Observable.FromAsyncPattern<, méthode T1> (Func<T1, AsyncCallback, Object, IAsyncResult>, Action<IAsyncResult>)
Convertit une paire de fonctions d’appel Begin/End en fonction asynchrone.
Espace de noms :System.Reactive.Linq
Assemblée: System.Reactive (en System.Reactive.dll)
Syntaxe
'Declaration
Public Shared Function FromAsyncPattern(Of T1) ( _
begin As Func(Of T1, AsyncCallback, Object, IAsyncResult), _
end As Action(Of IAsyncResult) _
) As Func(Of T1, IObservable(Of Unit))
'Usage
Dim begin As Func(Of T1, AsyncCallback, Object, IAsyncResult)
Dim end As Action(Of IAsyncResult)
Dim returnValue As Func(Of T1, IObservable(Of Unit))
returnValue = Observable.FromAsyncPattern(begin, _
end)
public static Func<T1, IObservable<Unit>> FromAsyncPattern<T1>(
Func<T1, AsyncCallback, Object, IAsyncResult> begin,
Action<IAsyncResult> end
)
public:
generic<typename T1>
static Func<T1, IObservable<Unit>^>^ FromAsyncPattern(
Func<T1, AsyncCallback^, Object^, IAsyncResult^>^ begin,
Action<IAsyncResult^>^ end
)
static member FromAsyncPattern :
begin:Func<'T1, AsyncCallback, Object, IAsyncResult> *
end:Action<IAsyncResult> -> Func<'T1, IObservable<Unit>>
JScript does not support generic types and methods.
Paramètres de type
- T1
Premier type de fonction.
Paramètres
- begin
Type : System.Func<T1, AsyncCallback, Object, IAsyncResult>
Fonction begin invoke.
- end
Type : System.Action<IAsyncResult>
Fonction d’appel de fin.
Valeur de retour
Type : System.Func<T1, IObservable<Unit>>
Une paire de fonctions d’appel Début/Fin.