using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace WebSockets.Common { public enum WebSocketOpCode { ContinuationFrame = 0, TextFrame = 1, BinaryFrame = 2, ConnectionClose = 8, Ping = 9, Pong = 10 } }