WebSocketError Enum

Definition

Contains the list of possible WebSocket errors.

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

Fields

ConnectionClosedPrematurely 8

Indicates that the connection was terminated unexpectedly.

Faulted 2

Indicates a general error.

HeaderError 7

Indicates an error occurred when parsing the HTTP headers during the opening handshake.

InvalidMessageType 1

Indicates that a WebSocket frame with an unknown opcode was received.

InvalidState 9

Indicates the WebSocket is an invalid state for the given operation (such as being closed or aborted).

NativeError 3

Indicates that an unknown native error occurred.

NotAWebSocket 4

Indicates that the incoming request was not a valid websocket request.

Success 0

Indicates that there was no native error information for the exception.

UnsupportedProtocol 6

Indicates that the client requested an unsupported WebSocket subprotocol.

UnsupportedVersion 5

Indicates that the client requested an unsupported version of the WebSocket protocol.

Applies to