Dart.Snmp Namespace > Manager Class : OnTable Method |
Protected Overridable Sub OnTable( _ ByVal e As TableEventArgs _ )
Dim instance As Manager Dim e As TableEventArgs instance.OnTable(e)
protected virtual void OnTable( TableEventArgs e )
protected: virtual void OnTable( TableEventArgs* e )
protected: virtual void OnTable( TableEventArgs^ e )
The OnTable method allows derived classes to handle the event without attaching a delegate, but marshaling is not provided. This is the preferred technique for handling the event in a derived class.
Note to Inheritors: When overriding this method in a derived class, be sure to call the base class OnTable method, so that registered delegates receive the event.
See the SynchronizingObject property for information on updating UI controls in your event handler.