Enum FrameType
Enumerates the types of frames described by the WebSocket protocol.
public enum FrameType
Fields
Binary = 2Indicates a binary frame.
Close = 8Indicates a close frame.
Continuation = 0Indicates a continuation frame.
Ping = 9Indicates a ping frame.
Pong = 10Indicates a ping response frame.
Text = 1Indicates a text frame.