Skip to content

)}

Observable.Materialize(IObservable) method

Defined in

Type: Observable Namespace: System.Reactive.Linq Assembly: System.Reactive.dll

Applies to

netstandard2.0

public static IObservable<Notification<TSource>> Materialize<TSource>(this IObservable<TSource> source)

Summary: Materializes the implicit notifications of an observable sequence as explicit notification values.

Type parameters

NameDescription
TSourceThe type of the elements in the source sequence.

Parameters

NameTypeDescription
sourceIObservableAn observable sequence to get notification values for.

Returns: IObservable> -- An observable sequence containing the materialized notification values from the source sequence.

Exceptions

TypeCondition
System.ArgumentNullExceptionsource is null.