NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Timer.AddOnTimer

Adds an event handler for the Timer event.

[Visual Basic]
Overridable Public Sub AddOnTimer( _
   ByVal handler As EventHandler _
)
[C#]
public virtual void AddOnTimer(
   EventHandler handler
);
[C++]
public: virtual void AddOnTimer(
   EventHandler* handler
);
[JScript]
public function AddOnTimer(
   handler : EventHandler
);

Parameters

handler
An EventHandler delegate that represents the method that will handle the Timer event.

See Also

Timer Class | Timer Members | System.Timers Namespace | RemoveOnTimer