Method Process
Process<TSource>(IObservable<TSource>)
Bypasses the specified number of elements at the start of an observable sequence and returns the remaining elements.
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 that contains the elements that occur after the skipped elements in the
source
sequence.
Type Parameters
TSource
The type of the elements in the
source
sequence.