Observable.Dematerialize<TSource> Method
Dematerializes the explicit notification values of an observable sequence as implicit notifications.
Namespace: System.Reactive.Linq
Assembly: System.Reactive (in System.Reactive.dll)
public static IObservable<TSource> Dematerialize<TSource>( this IObservable<Notification<TSource>> source )
Type Parameters
- TSource
The type of source.
Parameters
- source
- Type: System.IObservable<Notification<TSource>>
An observable sequence containing explicit notification values which have to be turned into implicit notifications.
Return Value
Type: System.IObservable<TSource>An observable sequence exhibiting the behavior corresponding to the source sequence's notification values.