Observable.FromAsyncPattern<T1, T2, T3, T4, T5, T6> Method (Func<T1, T2, T3, T4, T5, T6, AsyncCallback, Object, IAsyncResult>, Action<IAsyncResult>)
Converts a Begin/End invoke function pair into an asynchronous function.
Namespace: System.Reactive.Linq
Assembly: System.Reactive (in System.Reactive.dll)
public static Func<T1, T2, T3, T4, T5, T6, IObservable<Unit>> FromAsyncPattern<T1, T2, T3, T4, T5, T6>( Func<T1, T2, T3, T4, T5, T6, AsyncCallback, Object, IAsyncResult> begin, Action<IAsyncResult> end )
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.
Parameters
- begin
- Type: System.Func<T1, T2, T3, T4, T5, T6, AsyncCallback, Object, IAsyncResult>
The begin invoke function.
- end
- Type: System.Action<IAsyncResult>
The end invoke function.
Return Value
Type: System.Func<T1, T2, T3, T4, T5, T6, IObservable<Unit>>A Begin/End invoke function pair.