WebSocketError 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.
Contains the list of possible WebSocket errors.
public enum class WebSocketError
public enum WebSocketError
type WebSocketError =
Public Enum WebSocketError
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Success | 0 | Indicates that there was no native error information for the exception. |
InvalidMessageType | 1 | Indicates that a WebSocket frame with an unknown opcode was received. |
Faulted | 2 | Indicates a general error. |
NativeError | 3 | Indicates that an unknown native error occurred. |
NotAWebSocket | 4 | Indicates that the incoming request was not a valid websocket request. |
UnsupportedVersion | 5 | Indicates that the client requested an unsupported version of the WebSocket protocol. |
UnsupportedProtocol | 6 | Indicates that the client requested an unsupported WebSocket subprotocol. |
HeaderError | 7 | Indicates an error occurred when parsing the HTTP headers during the opening handshake. |
ConnectionClosedPrematurely | 8 | Indicates that the connection was terminated unexpectedly. |
InvalidState | 9 | Indicates the WebSocket is an invalid state for the given operation (such as being closed or aborted). |