class RequestCompletedEventArgs

Parents
System.EventArgs

Brief

The arguments of the RequestCompleted event.

Details

RequestCompletedEventArgs is used when there is a subscription to O2GSession.RequestCompleted event:

Using RequestCompletedEventArgs [hide]

 session.RequestCompleted += new EventHandler<RequestCompletedEventArgs>(session_RequestCompleted);
 //...
 
 static void session_RequestCompleted(object sender, RequestCompletedEventArgs e)
 {
       string sRequestID = e.RequestID;
       O2GResponse response = e.Response;
       //...
 }

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

Public Properties

RequestID

The identifier of the request.

Response

The response object.

Public Constructors

RequestCompletedEventArgs

Constructor.

back