using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SuperSocket.SocketBase.Protocol
{
///
/// The interface for request info parser
///
public interface IRequestInfoParser
where TRequestInfo : IRequestInfo
{
///
/// Parses the request info from the source string.
///
/// The source.
///
TRequestInfo ParseRequestInfo(string source);
}
}