C# -- HttpWebRequest 和 HttpWebResponse 的使用
生活随笔
收集整理的這篇文章主要介紹了
C# -- HttpWebRequest 和 HttpWebResponse 的使用
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
C# -- HttpWebRequest 和 HttpWebResponse 的使用
結(jié)合使用HttpWebRequest 和 HttpWebResponse,來判斷一個網(wǎng)頁地址是否可以正常訪問。
1.舉例
class Program{static void Main(string[] args){string strUrl = "https://www.baidu.com";HttpWebRequest wreq = (HttpWebRequest)WebRequest.Create(strUrl);HttpWebResponse wrsp = (HttpWebResponse)wreq.GetResponse();if (wrsp.StatusCode == HttpStatusCode.OK){Console.WriteLine(strUrl+ " --http response正常\r\n"); }else{Console.WriteLine(strUrl + " --http response出現(xiàn)異常!\r\n"); }Console.ReadKey();}}?
2. 運行結(jié)果:
?
轉(zhuǎn)載于:https://www.cnblogs.com/ChengWenHao/p/CSharpHttpWebRequestAndHttpWebResponse.html
總結(jié)
以上是生活随笔為你收集整理的C# -- HttpWebRequest 和 HttpWebResponse 的使用的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 23种计模式之Python实现(史上最全
- 下一篇: jQuery(一)初识