using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SuperSocket.SocketBase.Protocol;
namespace SuperWebSocket.SubProtocol
{
///
/// The basic interface of SubRequestInfo
///
public interface ISubRequestInfo : IRequestInfo
{
///
/// Gets the token.
///
///
/// The token.
///
string Token { get; }
}
}