16 lines
206 B

#if !NET20
namespace Apewer.WebSocket
{
internal enum FrameType : byte
{
Continuation,
Text,
Binary,
Close = 8,
Ping = 9,
Pong = 10,
}
}
#endif