DispatcherObservable.ObserveOn<TSource> Method (IObservable<TSource>, DispatcherScheduler)
Namespace: System.Reactive.Linq
Assembly: System.Reactive.Windows.Threading (in System.Reactive.Windows.Threading.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function ObserveOn(Of TSource) ( _
source As IObservable(Of TSource), _
scheduler As DispatcherScheduler _
) As IObservable(Of TSource)
'Usage
Dim source As IObservable(Of TSource)
Dim scheduler As DispatcherScheduler
Dim returnValue As IObservable(Of TSource)
returnValue = source.ObserveOn(scheduler)
public static IObservable<TSource> ObserveOn<TSource>(
this IObservable<TSource> source,
DispatcherScheduler scheduler
)
[ExtensionAttribute]
public:
generic<typename TSource>
static IObservable<TSource>^ ObserveOn(
IObservable<TSource>^ source,
DispatcherScheduler^ scheduler
)
static member ObserveOn :
source:IObservable<'TSource> *
scheduler:DispatcherScheduler -> IObservable<'TSource>
JScript does not support generic types and methods.
Type Parameters
- TSource
Parameters
- source
Type: System.IObservable<TSource>
- scheduler
Type: System.Reactive.Concurrency.DispatcherScheduler
Return Value
Type: System.IObservable<TSource>
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 .