DispatcherQueue.CreateTimer Method

Definition

Creates a DispatcherQueueTimer on the DispatcherQueue to execute a task periodically after a time interval has elapsed.

public:
 virtual DispatcherQueueTimer ^ CreateTimer() = CreateTimer;
DispatcherQueueTimer CreateTimer();
public DispatcherQueueTimer CreateTimer();
function createTimer()
Public Function CreateTimer () As DispatcherQueueTimer

Returns

An DispatcherQueueTimer that can queue tasks on a timed basis to the current DispatcherQueue.

Remarks

By default, a repeating timer is created. Set IsRepeating to false to make it non-repeating.

Applies to