class TablesUpdatesEventArgs

Parents
System.EventArgs

Brief

The arguments of the TablesUpdates event.

Details

TablesUpdatesEventArgs is used when there is a subscription to O2GSession.TablesUpdates event:

Using TablesUpdatesEventArgs [hide]

 session.TablesUpdates += new EventHandler<TablesUpdatesEventArgs>(session_TablesUpdates);
 //...
 
 static void session_TablesUpdates(object sender, TablesUpdatesEventArgs e)
 {
    O2GResponse response = e.Response;
    //...
 }

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

Public Properties

Response

The response object.

Public Constructors

TablesUpdatesEventArgs

Constructor.

back