public void Dispose()
        {
            if (managerTimer != null)
            {
                managerTimer.Change(-1, -1);
                managerTimer.Dispose();
                managerTimer = null;
            }
        }

3.2.2     HTTP Request类
HTTP服务下的Request,它包含服务器的HTTP请求信息。前面章节讨论过Request的作用,他在RFC2616中给了详细的说明, 一个请求消息是从客户端到服务器端的,在消息首行里包含方法,资源指示符,协议版本,所以HTTP Request这个类需要包括HTTP方法GET / POST,Http 类型,完整的HTTP请求,请求的完整路径,请求路径,请求路径,URL参数。
代码分析:
public class HttpRequest : ApplicationRequest
    {

        protected HttpRequestType type;

        public HttpRequest(RawRequest request)
            : base(request)
        {
            type = HttpRequestType.HttpPage;
            Requests = new Dictionary<string, string>();
            UrlParameters = new Dictionary<string, string>();
        }

        //### HTTP方法GET / POST
        public HttpMethodType Method { get; set; }
        //### Http 类型
        public HttpRequestType Type
        {
            get { return type; }
            set { type = value; }
        }

        //### 完整的HTTP请求 ex:
        public string CompleteRequest { get; set; }
        //### 请求的完整路径
        public string CompletePath { get; set; }
        //### 请求路径
        public string Path { get; set; }
        //### 请求路径
        public IList<string> Paths { get; set; }
        //### Http 请求
        public Dictionary<string, string> Requests;
        //### 查询网址参数
        public Dictionary<string, string> UrlParameters;        
        /// <summary>
        /// 返回true,如果支持Gzip压缩
        /// </summary>
        /// <returns></returns>
上一篇:ASP.net企业培训在线考试系统的设计与实现
下一篇:对我国《小企业会计准则》的思考和探索

架设Linux(2.6内核)的服务器集群【745字】

使用http协议和winsockapi实现...

WEB服务器多框架解决方案【1450字】

浅谈网站服务器安全维护技巧【2595字】

小微商家移动互联进销存...

C++IM即时通讯系统服务器端的设计+源程序

GPRS技术无人车辆DGPS定位系统服务器系统设计

承德市事业单位档案管理...

C#学校科研管理系统的设计

中国学术生态细节考察《...

国内外图像分割技术研究现状

10万元能开儿童乐园吗,我...

志愿者活动的调查问卷表

公寓空调设计任务书

AT89C52单片机的超声波测距...

神经外科重症监护病房患...

医院财务风险因素分析及管理措施【2367字】