'Declaration Public Event ConnectionLost As ConnectionLostEventHandler |
public event ConnectionLostEventHandler ConnectionLost |
Event Data
The event handler receives an argument of type ConnectionLostEventArgs containing data related to this event. The following ConnectionLostEventArgs properties provide information specific to this event.
| Property | Description |
|---|---|
| AttemptNumber | The number of attempts to reconnect. |
| Cause | The reason of the connection loss. |
| Component | The object where the connection loss occurs. |
| Context | The state of connection when connection is lost. |
| RetryMode | The application behavior when connection is lost. |
Remarks
Clients that want to process fatal errors and perform failover should create a ConnectionLostEventHandler delegate to listen to this event.
Example
See Also