class RequestFailedEventArgs
| Parents | |
System.EventArgs |
|
Brief
The arguments of the RequestFailed event.
Details
RequestFailedEventArgs is used when there is a subscription to
O2GSession.RequestFailed event:
Using RequestFailedEventArgs [hide]
session.RequestFailed += new EventHandler<RequestFailedEventArgs>(session_RequestFailed);
//...
static void session_RequestFailed(object sender, RequestFailedEventArgs e)
{
string sRequestID = e.RequestID;
string sError = e.Error;
//...
}
The type defined in the fxcore2.dll assembly.
The namespace is fxcore2.
| Public Properties | |
|
The server error message. |
|
|
The identifier of the request. |
|
| Public Constructors | |
|
Constructor. |
|