public method O2GOffersTable.StatusChanged

Brief

The event is fired when the table's status changes.

Details

This event could be used instead of IO2GTableListener.onStatusChanged. Subscribe to this event to catch changes of the table's status.

StatusChanged event [hide]

 tradesTable.StatusChanged +=new EventHandler<StatusChangedEventArgs>(tradesTable_StatusChanged);
 //...
 
 static void tradesTable_StatusChanged(object sender, StatusChangedEventArgs statusChangedArgs)
 {
     O2GTableStatus status = statusChangedArgs.Status;
     //...
 }

Declared in O2GTable

back