Qbservable.AsObservable<TSource> Method
Hides the identity of an observable sequence.
Namespace: System.Reactive.Linq
Assembly: System.Reactive.Providers (in System.Reactive.Providers.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function AsObservable(Of TSource) ( _
source As IQbservable(Of TSource) _
) As IObservable(Of TSource)
'Usage
Dim source As IQbservable(Of TSource)
Dim returnValue As IObservable(Of TSource)
returnValue = source.AsObservable()
public static IObservable<TSource> AsObservable<TSource>(
this IQbservable<TSource> source
)
[ExtensionAttribute]
public:
generic<typename TSource>
static IObservable<TSource>^ AsObservable(
IQbservable<TSource>^ source
)
static member AsObservable :
source:IQbservable<'TSource> -> IObservable<'TSource>
JScript does not support generic types and methods.
Type Parameters
- TSource
The type of source.
Parameters
- source
Type: System.Reactive.Linq.IQbservable<TSource>
An observable sequence whose identity to hide.
Return Value
Type: System.IObservable<TSource>
An observable sequence that hides the identity of 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 .