AsyncActionProgressHandler<TProgress> Délégué
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Représente une méthode qui gère les événements de mise à jour de progression d’une action asynchrone qui fournit des mises à jour de progression.
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.FoundationContract, 65536)]
/// [Windows.Foundation.Metadata.Guid(1837385816, 3327, 17808, 174, 137, 149, 165, 165, 200, 180, 184)]
template <typename TProgress>
class AsyncActionProgressHandler : MulticastDelegate
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.FoundationContract), 65536)]
[Windows.Foundation.Metadata.Guid(1837385816, 3327, 17808, 174, 137, 149, 165, 165, 200, 180, 184)]
public delegate void AsyncActionProgressHandler<TProgress>(IAsyncActionWithProgress<TProgress> asyncInfo, TProgress progressInfo);
Public Delegate Sub AsyncActionProgressHandler(Of TProgress)(asyncInfo As IAsyncActionWithProgress(Of TProgress), progressInfo As TProgress)
Paramètres de type
- TProgress
Paramètres
- asyncInfo
- IAsyncActionWithProgress<TProgress>
Action 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.