16 lines
189 B
C#
16 lines
189 B
C#
using System;
|
|
|
|
namespace Fleck
|
|
{
|
|
public enum FrameType : byte
|
|
{
|
|
Continuation,
|
|
Text,
|
|
Binary,
|
|
Close = 8,
|
|
Ping = 9,
|
|
Pong = 10,
|
|
}
|
|
}
|
|
|