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!

SystemEvents TimerElapsed Event

[To be supplied.]

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

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

Parameters

sender
The source of the event.
e
A TimerElapsedEventArgs that contains the event data. The following TimerElapsedEventArgs properties provide information specific to this event.
Property Description
TimerId
The new timer id.

See Also

SystemEvents Class | SystemEvents MembersTopic | System.Core Namespace