Dart.Sockets Namespace > Server Class : ConnectionsChanged Event |
'Declaration Public Event ConnectionsChanged As EventHandler(Of ConnectionsChangedEventArgs)
'Usage Dim instance As Server Dim handler As EventHandler(Of ConnectionsChangedEventArgs) AddHandler instance.ConnectionsChanged, handler
public event EventHandler<ConnectionsChangedEventArgs> ConnectionsChanged
public: __event EventHandler<ConnectionsChangedEventArgs*>* ConnectionsChanged
public: event EventHandler<ConnectionsChangedEventArgs^>^ ConnectionsChanged
The event handler receives an argument of type ConnectionsChangedEventArgs containing data related to this event. The following ConnectionsChangedEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Connection | Gets the Tcp object provided by the ConnectionsChanged event. |
This event is raised on the UI thread so that data can be used with UI components.
See SynchronizingObject for important information on updating UI controls from within this event.