System.Reactive.Linq.CoreDispatcherObservable
Provides a set of extension methods for scheduling actions performed through observable sequences on UI dispatchers.
namespace System.Reactive.Linq
{
public static class CoreDispatcherObservable
{
public static IObservable<TSource> ObserveOn<[System.Runtime.CompilerServices.Nullable(2)] TSource>(this IObservable<TSource> source, CoreDispatcher dispatcher);
public static IObservable<TSource> ObserveOn<[System.Runtime.CompilerServices.Nullable(2)] TSource>(this IObservable<TSource> source, CoreDispatcher dispatcher, CoreDispatcherPriority priority);
public static IObservable<TSource> ObserveOn<[System.Runtime.CompilerServices.Nullable(2)] TSource>(this IObservable<TSource> source, DependencyObject dependencyObject);
public static IObservable<TSource> ObserveOn<[System.Runtime.CompilerServices.Nullable(2)] TSource>(this IObservable<TSource> source, DependencyObject dependencyObject, CoreDispatcherPriority priority);
public static IObservable<TSource> ObserveOnCoreDispatcher<[System.Runtime.CompilerServices.Nullable(2)] TSource>(this IObservable<TSource> source);
public static IObservable<TSource> ObserveOnDispatcher<[System.Runtime.CompilerServices.Nullable(2)] TSource>(this IObservable<TSource> source, CoreDispatcherPriority priority);
public static IObservable<TSource> SubscribeOn<[System.Runtime.CompilerServices.Nullable(2)] TSource>(this IObservable<TSource> source, CoreDispatcher dispatcher);
public static IObservable<TSource> SubscribeOn<[System.Runtime.CompilerServices.Nullable(2)] TSource>(this IObservable<TSource> source, CoreDispatcher dispatcher, CoreDispatcherPriority priority);
public static IObservable<TSource> SubscribeOn<[System.Runtime.CompilerServices.Nullable(2)] TSource>(this IObservable<TSource> source, DependencyObject dependencyObject);
public static IObservable<TSource> SubscribeOn<[System.Runtime.CompilerServices.Nullable(2)] TSource>(this IObservable<TSource> source, DependencyObject dependencyObject, CoreDispatcherPriority priority);
public static IObservable<TSource> SubscribeOnCoreDispatcher<[System.Runtime.CompilerServices.Nullable(2)] TSource>(this IObservable<TSource> source);
public static IObservable<TSource> SubscribeOnDispatcher<[System.Runtime.CompilerServices.Nullable(2)] TSource>(this IObservable<TSource> source, CoreDispatcherPriority priority);
}
}