Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Asynchronously subscribes and unsubscribes observers on the specified synchronization context.
Namespace: System.Reactive.Linq
Assembly: System.Reactive.Providers (in System.Reactive.Providers.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function SubscribeOn(Of TSource) ( _
source As IQbservable(Of TSource), _
context As SynchronizationContext _
) As IQbservable(Of TSource)
'Usage
Dim source As IQbservable(Of TSource)
Dim context As SynchronizationContext
Dim returnValue As IQbservable(Of TSource)
returnValue = source.SubscribeOn(context)
public static IQbservable<TSource> SubscribeOn<TSource>(
this IQbservable<TSource> source,
SynchronizationContext context
)
[ExtensionAttribute]
public:
generic<typename TSource>
static IQbservable<TSource>^ SubscribeOn(
IQbservable<TSource>^ source,
SynchronizationContext^ context
)
static member SubscribeOn :
source:IQbservable<'TSource> *
context:SynchronizationContext -> IQbservable<'TSource>
JScript does not support generic types and methods.
Type Parameters
- TSource
The type of source.
Parameters
- source
Type: System.Reactive.Linq.IQbservable<TSource>
The source sequence.
- context
Type: System.Threading.SynchronizationContext
The synchronization context to perform subscription and unsubscription actions on.
Return Value
Type: System.Reactive.Linq.IQbservable<TSource>
The source sequence whose subscriptions and unsubscriptions happen on the specified synchronization context.
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 .