using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using SuperSocket.SocketBase.Protocol;
namespace SuperWebSocket.SubProtocol
{
///
/// SubProtocol RequestInfo type
///
public class SubRequestInfo : RequestInfo, ISubRequestInfo
{
///
/// Gets the token of this request, used for callback
///
public string Token { get; private set; }
///
/// Initializes a new instance of the class.
///
/// The key.
/// The token.
/// The data.
public SubRequestInfo(string key, string token, string data)
: base(key, data)
{
Token = token;
}
}
}