>
Defined in Type: Observable
Namespace: System.Reactive.Linq
Assembly: System.Reactive.dll
Applies to
netstandard2.0
public static IObservable<TSource> Dematerialize<TSource>(this IObservable<Notification<TSource>> source)
Summary: Dematerializes the explicit notification values of an observable sequence as implicit notifications.
Type parameters
| Name | Description |
|---|---|
TSource | The type of the elements materialized in the source sequence notification objects. |
Parameters
| Name | Type | Description |
|---|---|---|
source | IObservable | An observable sequence containing explicit notification values which have to be turned into implicit notifications. |
Returns: IObservable
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentNullException | source is null. |