using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace SuperSocket.SocketBase.Protocol { /// /// Binary type request information /// public class BinaryRequestInfo : RequestInfo { /// /// Initializes a new instance of the class. /// /// The key. /// The body. public BinaryRequestInfo(string key, byte[] body) : base(key, body) { } } }