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 Timer Event

Occurs when the specified timer interval has elapsed and the timer is enabled.

The following declaration shows the syntax for a method that handles the Timer event.

[Visual Basic]
Private Sub TimerName_Timer( _
   ByVal sender As Object, _
   ByVal e As EventArgs _
)
[C#]
private void TimerName_Timer(
   object sender,
   EventArgs e
);
[C++]
private: void TimerName_Timer(
   Object* sender,
   EventArgs* e
);
[JScript]
private TimerName_Timer(
   sender : Object,
   e : EventArgs
);

Parameters

sender
The source of the event.
e
An EventArgs that contains the event data. The following EventArgs properties provide information specific to this event.
Property Description
ExtendedInfo
Holds a reference to an object that manages the event's state.

Example

hg

See Also

Timer Class | Timer MembersTopic | System.WinForms Namespace