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
sourceIObservable<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
sourcesequence.
Type Parameters
TSourceThe type of the elements in the
sourcesequence.