using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace SuperWebSocket.Protocol { /// /// Handshake request /// class HandshakeRequest : IWebSocketFragment { /// /// Gets the key of this request. /// public string Key { get { return OpCode.HandshakeTag; } } } }