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
source
IObservable<TSource>The sequence to skip elements from.
Returns
- IObservable<TSource>
An observable sequence containing the elements in the
source
sequence excluding the ones which are bypassed at the end.
Type Parameters
TSource
The type of the elements in the
source
sequence.