Qbservable.ToAsync<T1, T2, T3, TResult> Method (IQbservableProvider, Expression<Func<T1, T2, T3, TResult>>, IScheduler)
Converts the function into an asynchronous function.
Namespace: System.Reactive.Linq
Assembly: System.Reactive.Providers (in System.Reactive.Providers.dll)
public static Func<T1, T2, T3, IQbservable<TResult>> ToAsync<T1, T2, T3, TResult>( this IQbservableProvider provider, Expression<Func<T1, T2, T3, TResult>> function, IScheduler scheduler )
Type Parameters
- T1
The first type of function.
- T2
The second type of function.
- T3
The third type of function.
- TResult
The type of result.
Parameters
- provider
- Type: System.Reactive.Linq.IQbservableProvider
The local Qbservable provider.
- function
- Type: System.Linq.Expressions.Expression<Func<T1, T2, T3, TResult>>
The function used to synchronization.
- scheduler
- Type: System.Reactive.Concurrency.IScheduler
The scheduler used to synchronization.
Return Value
Type: System.Func<T1, T2, T3, IQbservable<TResult>>The function into an asynchronous function.