public method O2GSession.TablesUpdates
Brief
This event occurs when a table update appears.
Details
This event could be used instead of
IO2GResponseListener.onTablesUpdates
for monitoring table updates.
TablesUpdates event [hide]
session.TablesUpdates += new EventHandler<TablesUpdatesEventArgs>(session_TablesUpdates);
//...
static void session_TablesUpdates(object sender, TablesUpdatesEventArgs e)
{
O2GResponse response = e.Response;
//...
}
Declared in O2GSession