Method Process
Process<TSource>(IObservable<TSource>)
Materializes the implicit notifications of an observable sequence as explicit notification values.
public IObservable<Notification<TSource>> Process<TSource>(IObservable<TSource> source)
Parameters
sourceIObservable<TSource>An observable sequence to get notification values for.
Returns
- IObservable<Notification<TSource>>
An observable sequence containing the materialized notification values from the
sourcesequence.
Type Parameters
TSourceThe type of the elements in the
sourcesequence.