Method Process
Process<TSource>(IObservable<TSource>)
Bypasses the specified number of elements at the end of an observable sequence.
public override IObservable<TSource> Process<TSource>(IObservable<TSource> source)
Parameters
sourceIObservable<TSource>The sequence to skip elements from.
Returns
- IObservable<TSource>
An observable sequence containing the elements in the
sourcesequence excluding the ones which are bypassed at the end.
Type Parameters
TSourceThe type of the elements in the
sourcesequence.