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