mscorlib(4.0.0.0) API with additions
WebSocketState.cs
1 namespace System.Net.WebSockets
2 {
4  public enum WebSocketState
5  {
7  None,
9  Connecting,
11  Open,
13  CloseSent,
17  Closed,
19  Aborted
20  }
21 }
A close message was received from the remote endpoint.
A close message was sent to the remote endpoint.
WebSocketState
Defines the different states a WebSockets instance can be in.