ConnectionState Enum 
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Describes the current connection state.
public enum ConnectionState
	type ConnectionState = 
	Public Enum ConnectionState
		- Inheritance
 - 
				ConnectionState
 
Fields
| Name | Value | Description | 
|---|---|---|
| Disconnected | 0 | Represents that the state is not connected, and no connection attempt is in progress (Client), or not listening for incoming connections (Server).  | 
			
| Connecting | 1 | Represents connecting to server (Client), listening for incoming connections (Server), or performing connection handshake (Client/Server).  | 
			
| Connected | 2 | Represents fully connected, all communication channels established (Client/Server).  |