This is preliminary documentation and subject to change. To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!
Timer.Change (UInt32, UInt32)
Updates a timer-queue timer.
[Visual Basic]
Overloads Public Function Change( _
ByVal dueTime As UInt32, _ ByVal period As UInt32 _) As Boolean[C#]
public bool Change(
uint dueTime, uint period);[C++]
public: bool Change(
unsigned int dueTime, unsigned int period);[JScript]
public function Change(
dueTime : UInt32,period : UInt32) : Boolean;
Parameters
dueTime
Specifies the time, in milliseconds, after which the timer should expire.
period
Specifies the period of the timer, in milliseconds. If period is zero, the timer is signaled once. If period is greater than zero, the timer is periodic. A periodic timer automatically reactivates each time the period elapses, until the timer is canceled using the Dispose method or reset using Change. If period is less than zero, the function fails.