TimerElapsedHandler 委托

定义

表示使用 CreateTimerCreatePeriodicTimer 创建的计时器过期时调用的方法。

public delegate void TimerElapsedHandler(ThreadPoolTimer ^ timer);
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.Guid(4205749863, 64491, 18891, 173, 178, 113, 24, 76, 85, 110, 67)]
class TimerElapsedHandler : MulticastDelegate
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.Guid(4205749863, 64491, 18891, 173, 178, 113, 24, 76, 85, 110, 67)]
public delegate void TimerElapsedHandler(ThreadPoolTimer timer);
Public Delegate Sub TimerElapsedHandler(timer As ThreadPoolTimer)

参数

timer
ThreadPoolTimer

要与此方法关联的计时器。 当此计时器过期时,将调用 方法。

属性

Windows 要求

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

注解

取消计时器时,挂起的 TimerElapsedHandler 委托也会被取消。 允许已运行的 TimerElapsedHandler 委托完成。

适用于