WebSocketState 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.
Defines the different states a WebSockets instance can be in.
public enum class WebSocketState
public enum WebSocketState
type WebSocketState =
Public Enum WebSocketState
- Inheritance
Fields
Name | Value | Description |
---|---|---|
None | 0 | Reserved for future use. |
Connecting | 1 | The connection is negotiating the handshake with the remote endpoint. |
Open | 2 | The initial state after the HTTP handshake has been completed. |
CloseSent | 3 | A close message was sent to the remote endpoint. |
CloseReceived | 4 | A close message was received from the remote endpoint. |
Closed | 5 | Indicates the WebSocket close handshake completed gracefully. |
Aborted | 6 | Indicates that the WebSocket has been aborted. |