AsyncOperationProgressHandler<TResult,TProgress> Délégué

Définition

Représente une méthode qui gère les événements de mise à jour de progression d’une opération asynchrone qui fournit des mises à jour de progression.

/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.FoundationContract, 65536)]
/// [Windows.Foundation.Metadata.Guid(1432946946, 2731, 16922, 135, 120, 248, 206, 80, 38, 215, 88)]
template <typename TResult, typename TProgress>
class AsyncOperationProgressHandler : MulticastDelegate
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.FoundationContract), 65536)]
[Windows.Foundation.Metadata.Guid(1432946946, 2731, 16922, 135, 120, 248, 206, 80, 38, 215, 88)]
public delegate void AsyncOperationProgressHandler<TResult,TProgress>(IAsyncOperationWithProgress<TResult,TProgress> asyncInfo, TProgress progressInfo);
Public Delegate Sub AsyncOperationProgressHandler(Of TResult, TProgress)(asyncInfo As IAsyncOperationWithProgress(Of TResult, TProgress), progressInfo As TProgress)

Paramètres de type

TResult
TProgress

Paramètres

asyncInfo
IAsyncOperationWithProgress<TResult,TProgress>

Opération asynchrone.

progressInfo
TProgress

Informations de progression.

Attributs

Configuration requise pour Windows

Famille d’appareils
Windows 10 (introduit dans 10.0.10240.0)
API contract
Windows.Foundation.FoundationContract (introduit dans v1.0)

Exemples

Pour obtenir un exemple de code C++/WinRT illustrant la façon de gérer l’événement Progress , consultez Types délégués pour les actions et opérations asynchrones.

S’applique à