AsyncActionProgressHandler<TProgress> 委托

定义

表示处理提供进度更新的异步操作的进度更新事件的方法。

/// [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)

类型参数

TProgress

参数

asyncInfo
IAsyncActionWithProgress<TProgress>

异步操作。

progressInfo
TProgress

进度信息。

属性

Windows 要求

设备系列
Windows 10 (在 10.0.10240.0 中引入)
API contract
Windows.Foundation.FoundationContract (在 v1.0 中引入)

示例

有关说明如何处理 Progress 事件的示例 C++/WinRT 代码,请参阅异步操作和操作的委托类型

适用于