ConnectionStatus Enumeration |
The various states that an
IListener can be in.
Namespace: VirtualRadar.Interface.NetworkAssembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public enum ConnectionStatus
Public Enumeration ConnectionStatus
public enum class ConnectionStatus
Members
| Member name | Value | Description |
---|
| Disconnected | 0 |
The listener is not connected to the source of aircraft message data.
|
| Connecting | 1 |
The listener is attempting to connect to the source of aircraft message data.
|
| Connected | 2 |
The listener has connected to the source of aircraft message data.
|
| CannotConnect | 3 |
The listener tried to connect to the source of aircraft message data and failed. It won't try again.
|
| Reconnecting | 4 |
The listener was connected to the source of aircraft message data but it seems to have broken and it
is trying to automatically reconnect.
|
| Waiting | 5 |
The listener is waiting for a connection to be made to it.
|
See Also