WebSocket close status.
Namespace:
Rebex.Net
Assembly:
Rebex.WebSocket (in Rebex.WebSocket.dll)
Syntax
| Visual Basic |
|---|
Public Enumeration WebSocketCloseStatus |
| C# |
|---|
public enum WebSocketCloseStatus |
Members
| Member name | Description | |
|---|---|---|
| NormalClosure |
Default close reason.
| |
| EndpointUnavailable |
Server is going down or a browser have navigated away from a page.
| |
| ProtocolError |
Protocol error.
| |
| InvalidMessageType |
Received unexpected data type (text versus binary).
| |
| Empty |
No close reason.
| |
| InvalidPayloadData |
Received inconsistent data (such as non-UTF-8 data within a text message).
| |
| PolicyViolation |
No suitable code exists or there is a need to hide specific details.
| |
| MessageTooBig |
Message was too big to be processed.
| |
| MandatoryExtension |
Mandatory extension is missing (only sent by clients).
| |
| InternalServerError |
Internal server error (only sent by servers).
|