Observable.FromAsyncPattern<T1, T2> Method (Func<T1, T2, 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, IObservable<Unit>> FromAsyncPattern<T1, T2>( Func<T1, T2, AsyncCallback, Object, IAsyncResult> begin, Action<IAsyncResult> end )
Type Parameters
- T1
The first type of function.
- T2
The second type of function.
Parameters
- begin
- Type: System.Func<T1, T2, AsyncCallback, Object, IAsyncResult>
The begin invoke function.
- end
- Type: System.Action<IAsyncResult>
The end invoke function.