Observable::ToAsync<T1, T2, T3, T4, T5, T6, T7, TResult> Method (Func<T1, T2, T3, T4, T5, T6, T7, TResult>, IScheduler)
Converts the function into an asynchronous function.
Namespace: System.Reactive.Linq
Assembly: System.Reactive (in System.Reactive.dll)
[ExtensionAttribute] public: generic<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename TResult> static Func<T1, T2, T3, T4, T5, T6, T7, IObservable<TResult>^>^ ToAsync( Func<T1, T2, T3, T4, T5, T6, T7, TResult>^ function, IScheduler^ scheduler )
Type Parameters
- T1
The first type of function.
- T2
The second type of function.
- T3
The third type of function.
- T4
The fourth type of function.
- T5
The fifth type of function.
- T6
The sixth type of function.
- T7
The seventh type of function.
- TResult
The type of result.
Parameters
- function
- Type: System::Func<T1, T2, T3, T4, T5, T6, T7, 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, T4, T5, T6, T7, IObservable<TResult>>The function into an asynchronous function.