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
source
IObservable<TSource>An observable sequence to get notification values for.
Returns
- IObservable<Notification<TSource>>
An observable sequence containing the materialized notification values from the
source
sequence.
Type Parameters
TSource
The type of the elements in the
source
sequence.