| MvComponentConnected Event |
Called when the component is connected.
Namespace: RW.Server.ComponentAssembly: RW.Server.Component (in RW.Server.Component.dll) Version: 6.3.0.0 (0.8.0.0)
Syntax public event EventHandler<ConnectionEventArgs> Connected
Public Event Connected As EventHandler(Of ConnectionEventArgs)
public:
event EventHandler<ConnectionEventArgs^>^ Connected {
void add (EventHandler<ConnectionEventArgs^>^ value);
void remove (EventHandler<ConnectionEventArgs^>^ value);
}
Value
Type:
SystemEventHandlerConnectionEventArgsRemarks
Of course, once the component is returned by
Connect(String, String, Int32),
it is too late to install an event handler for being warned of
the connection.
You need to install it at an earlier stage, for instance during
the instanciation
in the
MvComponentFactory.
See Also