class SessionStatusEventArgs

Parents
System.EventArgs

Brief

The arguments of the SessionStatusChanged event.

Details

SessionStatusEventArgs is used when there is a subscription to SessionStatusChanged event:

Using SessionStatusEventArgs [hide]

 session.SessionStatusChanged += new EventHandler<SessionStatusEventArgs>(session_SessionStatusChanged);
 //...
 
 static void session_SessionStatusChanged(object sender, SessionStatusEventArgs e)
 {
     O2GSessionStatusCode status = e.SessionStatus;
     //...
 }

The type defined in the fxcore2.dll assembly. The namespace is fxcore2.

Public Properties

SessionStatus

The new session status.

Public Constructors

SessionStatusEventArgs

Constructor.

back