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!

Schedule EventOccurred Event

Occurs when a scheduled event is due.

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

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

Parameters

sender
The source of the event.
e
An OccurredEventArgs that contains the event data. The following OccurredEventArgs properties provide information specific to this event.
Property Description
RaisedTime
Gets the time when the event was raised.

See Also

Schedule Class | Schedule MembersTopic | System.Timers Namespace