Method Process
Process<TSource>(IObservable<TSource>)
Returns a specified number of contiguous elements from the end 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 containing the specified number of elements from the end of the source sequence.
Type Parameters
TSourceThe type of the elements in the
sourcesequence.