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 notify observers on the specified synchronization context.
Namespace: System.Reactive.Linq
Assembly: System.Reactive (in System.Reactive.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function ObserveOn(Of TSource) ( _
source As IObservable(Of TSource), _
context As SynchronizationContext _
) As IObservable(Of TSource)
'Usage
Dim source As IObservable(Of TSource)
Dim context As SynchronizationContext
Dim returnValue As IObservable(Of TSource)
returnValue = source.ObserveOn(context)
public static IObservable<TSource> ObserveOn<TSource>(
this IObservable<TSource> source,
SynchronizationContext context
)
[ExtensionAttribute]
public:
generic<typename TSource>
static IObservable<TSource>^ ObserveOn(
IObservable<TSource>^ source,
SynchronizationContext^ context
)
static member ObserveOn :
source:IObservable<'TSource> *
context:SynchronizationContext -> IObservable<'TSource>
JScript does not support generic types and methods.
Type Parameters
- TSource
The type of source.
Parameters
- source
Type: System.IObservable<TSource>
The source sequence.
- context
Type: System.Threading.SynchronizationContext
The synchronization context to notify observers on.
Return Value
Type: System.IObservable<TSource>
The source sequence whose observations 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 IObservable<TSource>. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .