websocket-server – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5  
6 namespace WebSockets.Common
7 {
8 public enum WebSocketOpCode
9 {
10 ContinuationFrame = 0,
11 TextFrame = 1,
12 BinaryFrame = 2,
13 ConnectionClose = 8,
14 Ping = 9,
15 Pong = 10
16 }
17 }