DispatcherQueue.CreateTimer Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.