using System; using System.Collections.Generic; using System.Linq; using System.Text; using SuperSocket.Common; using SuperWebSocket.Protocol; namespace SuperWebSocket.Protocol { /// /// Plain text fragment /// class PlainFragment : IWebSocketFragment { /// /// Initializes a new instance of the class. /// /// The message. public PlainFragment(string message) { Message = message; } /// /// Gets the message. /// public string Message { get; private set; } /// /// Gets the key of this request. /// public string Key { get { return OpCode.PlainTag; } } } }