Defines error codes for WebSocketException class.
Namespace:
Rebex.Net
Assembly:
Rebex.WebSocket (in Rebex.WebSocket.dll)
Syntax
Visual Basic |
---|
Public Enumeration WebSocketError |
C# |
---|
public enum WebSocketError |
Members
Member name | Description | |
---|---|---|
Success |
Success. Errors with this error code should never occur.
| |
InvalidMessageType |
WebSocket message with invalid message type encountered.
| |
Faulted |
A general error has occured.
| |
NotAWebSocket |
The request is not a WebSocket request.
| |
UnsupportedVersion |
Unsupported WebSocket version.
| |
UnsupportedProtocol |
Unsupported subprotocol.
| |
HeaderError |
Error while parsing HTML headers during opening handshake.
| |
ConnectionClosedPrematurely |
Connection has termination unexpectedly.
| |
InvalidState |
The WebSocket is in invalid state to execute the specified operation.
|