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

[To be supplied.]

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

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

Parameters

sender
The source of the event.
e
A SessionEndedEventArgs that contains the event data. The following SessionEndedEventArgs properties provide information specific to this event.
Property Description
Reason
The reason for this event.

See Also

SystemEvents Class | SystemEvents MembersTopic | System.Core Namespace