13 lines
176 B
C#
13 lines
176 B
C#
|
namespace Uwaa.HTTP.Websockets;
|
|||
|
|
|||
|
public enum WSOpcode : byte
|
|||
|
{
|
|||
|
Continuation = 0x0,
|
|||
|
Text = 0x1,
|
|||
|
Binary = 0x2,
|
|||
|
|
|||
|
Close = 0x8,
|
|||
|
Ping = 0x9,
|
|||
|
Pong = 0xA,
|
|||
|
}
|