Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Change the limit and interval of the timer.
Namespace: Microsoft.WindowsServerSolutions.Common.ProviderFramework
Assembly: ProviderFramework (in ProviderFramework.dll)
Syntax
public void Change(
uint dueTime,
uint period
)
public:
void Change(
unsigned int dueTime,
unsigned int period
)
Public Sub Change (
dueTime As UInteger,
period As UInteger
)
Parameters
dueTime
Type: System.UInt32The length of time to delay before invoking the callback specified when the GarbageCollectedTimer object was created. Specify zero to invoke the callback and restart the timer immediately.
period
Type: System.UInt32The interval between invocations of the callback specified when the GarbageCollectedTimer object was created. Specify Infinite to disable periodic signaling.
See Also
Change Overload
GarbageCollectedTimer Class
Microsoft.WindowsServerSolutions.Common.ProviderFramework Namespace
Return to top