C-DEngine 5.105

Opcode Enumeration

Indicates the WebSocket frame type.

Namespace:  WebSocketSharp
Assembly:  C-DEngine (in C-DEngine.dll)

Syntax


public enum Opcode
Public Enumeration Opcode
public enum class Opcode

Members


Member nameDescription
Cont Equivalent to numeric value 0. Indicates continuation frame.
Text Equivalent to numeric value 1. Indicates text frame.
Binary Equivalent to numeric value 2. Indicates binary frame.
Close Equivalent to numeric value 8. Indicates connection close frame.
Ping Equivalent to numeric value 9. Indicates ping frame.
Pong Equivalent to numeric value 10. Indicates pong frame.

Remarks


The values of this enumeration are defined in Section 5.2 of RFC 6455.