'Declaration<SuppressMessageAttribute("Microsoft.Design", "CA1009:DeclareEventHandlersCorrectly")> Event Disconnected As ConnectionEventHandler
'UsageDim instance As ITerminal Dim handler As ConnectionEventHandler AddHandler instance.Disconnected, handler
[SuppressMessage("Microsoft.Design", "CA1009:DeclareEventHandlersCorrectly")] event ConnectionEventHandler Disconnected
Event Data
The event handler receives an argument of type ConnectionEventArgs containing data related to this event. The following ConnectionEventArgs properties provide information specific to this event.
| Property | Description |
|---|---|
| ConnectionId | Connection ID. |
| ConnectionSettings | Connection settings. |
| ConnectionType | Connection type option. |
See Also