Freigeben über


AsyncOperationCompletedHandler<TResult> Delegat

Definition

Stellt eine Methode dar, die das completed-Ereignis eines asynchronen Vorgangs behandelt.

/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.FoundationContract, 65536)]
/// [Windows.Foundation.Metadata.Guid(4242337836, 58840, 17528, 145, 90, 77, 144, 183, 75, 131, 165)]
template <typename TResult>
class AsyncOperationCompletedHandler : MulticastDelegate
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.FoundationContract), 65536)]
[Windows.Foundation.Metadata.Guid(4242337836, 58840, 17528, 145, 90, 77, 144, 183, 75, 131, 165)]
public delegate void AsyncOperationCompletedHandler<TResult>(IAsyncOperation<TResult> asyncInfo, AsyncStatus asyncStatus);
Public Delegate Sub AsyncOperationCompletedHandler(Of TResult)(asyncInfo As IAsyncOperation(Of TResult), asyncStatus As AsyncStatus)

Typparameter

TResult

Parameter

asyncInfo
IAsyncOperation<TResult>

Der asynchronen Vorgang.

asyncStatus
AsyncStatus

Einer der Enumerationswerte.

Attribute

Windows-Anforderungen

Gerätefamilie
Windows 10 (eingeführt in 10.0.10240.0)
API contract
Windows.Foundation.FoundationContract (eingeführt in v1.0)

Beispiele

Beispiel : C++/WinRT-Code zur Veranschaulichung der Behandlung des Completed-Ereignisses finden Sie unter Delegieren von Typen für asynchrone Aktionen und Vorgänge.

Gilt für: