WebSocketState Enum

Definition

Defines the different states a WebSockets instance can be in.

public enum class WebSocketState
public enum WebSocketState
type WebSocketState = 
Public Enum WebSocketState
Inheritance
WebSocketState

Fields

Aborted 6

Indicates that the WebSocket has been aborted.

Closed 5

Indicates the WebSocket close handshake completed gracefully.

CloseReceived 4

A close message was received from the remote endpoint.

CloseSent 3

A close message was sent to the remote endpoint.

Connecting 1

The connection is negotiating the handshake with the remote endpoint.

None 0

Reserved for future use.

Open 2

The initial state after the HTTP handshake has been completed.

Applies to