Method Process
Process<TSource>(IObservable<TSource>)
Returns the specified number of contiguous elements from the start of an observable sequence.
public override IObservable<TSource> Process<TSource>(IObservable<TSource> source)
Parameters
source
IObservable<TSource>The sequence to take elements from.
Returns
- IObservable<TSource>
An observable sequence that contains the specified number of elements from the start of the
source
sequence.
Type Parameters
TSource
The type of the elements in the
source
sequence.