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