ThreadPoolTimer.CreatePeriodicTimer(TimerElapsedHandler, TimeSpan, TimerDestroyedHandler) method
Creates a periodic timer and specifies a method to call after the periodic timer is complete. The periodic timer is complete when the timer has expired without being reactivated, and the final call to handler has finished.
Syntax
public static ThreadPoolTimer CreatePeriodicTimer( TimerElapsedHandler handler, TimeSpan period, TimerDestroyedHandler destroyed )
Parameters
- handler
-
Type: TimerElapsedHandler
The method to call when the timer expires.
- period
-
Type: System.TimeSpan [.NET] | Windows::Foundation::TimeSpan [C++]
The number of milliseconds until the timer expires. The timer reactivates each time the period elapses, until the timer is canceled.
Note A TimeSpan value of zero (or any value less than 1 millisecond) will cause the periodic timer to behave as a single-shot timer.
- destroyed
-
Type: TimerDestroyedHandler
The method to call after the periodic timer is complete.
Return value
Type: ThreadPoolTimer
An instance of a periodic timer.
Requirements
|
Minimum supported client | Windows 8 |
|---|---|
|
Minimum supported server | Windows Server 2012 |
|
Minimum supported phone | Windows Phone 8 |
|
Namespace |
|
|
Metadata |
|
See also
Build date: 2/25/2013
