码迷,mamicode.com
首页 > Web开发 > 详细

HttpWebRequest.Method 属性

时间:2014-11-18 23:22:22      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   os   sp   div   

        public static void GetHead(string url)
       {
            var http = (HttpWebRequest)WebRequest.Create(url);
            http.Method = "HEAD";//设置Method为HEAD
            http.UserAgent = "Tujia-Auto-Test";
            try
            {
                HttpWebResponse response = (HttpWebResponse)http.GetResponse();
                Console.Write(Convert.ToInt32(response.StatusCode) + " " + response.StatusCode.ToString());//Statuscode 为枚举类型,200为正常,其他输出异常,需要转为int型才会输出状态码
                response.Close();
            }
            catch (WebException ex)
            {
                Console.WriteLine(Convert.ToInt32(((HttpWebResponse)ex.Response).StatusCode)+"  "+((HttpWebResponse)ex.Response).StatusCode.ToString());
            }
        }

可以将 Method 属性设置为任何 HTTP 1.1 协议谓词:GET、HEAD、POST、PUT、DELETE、TRACE 或 OPTIONS。

HttpWebRequest.Method 属性

标签:style   blog   http   io   ar   color   os   sp   div   

原文地址:http://www.cnblogs.com/techfans/p/4106373.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!