Method Process
Process<TSource>(IObservable<TSource>)
Returns the first element of an observable sequence.
public override IObservable<TSource> Process<TSource>(IObservable<TSource> source)
Parameters
source
IObservable<TSource>The sequence to take the first element from.
Returns
- IObservable<TSource>
An observable sequence containing the first element of the
source
sequence.
Type Parameters
TSource
The type of the elements in the
source
sequence.