Qbservable.Materialize<TSource> Method
Materializes the implicit notifications of a queryable observable sequence as explicit notification values.
Namespace: System.Reactive.Linq
Assembly: System.Reactive.Providers (in System.Reactive.Providers.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function Materialize(Of TSource) ( _
source As IQbservable(Of TSource) _
) As IQbservable(Of Notification(Of TSource))
'Usage
Dim source As IQbservable(Of TSource)
Dim returnValue As IQbservable(Of Notification(Of TSource))
returnValue = source.Materialize()
public static IQbservable<Notification<TSource>> Materialize<TSource>(
this IQbservable<TSource> source
)
[ExtensionAttribute]
public:
generic<typename TSource>
static IQbservable<Notification<TSource>^>^ Materialize(
IQbservable<TSource>^ source
)
static member Materialize :
source:IQbservable<'TSource> -> IQbservable<Notification<'TSource>>
JScript does not support generic types and methods.
Type Parameters
- TSource
The type of source.
Parameters
- source
Type: System.Reactive.Linq.IQbservable<TSource>
A queryable observable sequence to get notification values for.
Return Value
Type: System.Reactive.Linq.IQbservable<Notification<TSource>>
A queryable observable sequence containing the materialized notification values from the source sequence.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IQbservable<TSource>. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .