C# 发起HTTP请求并检查回应的Cookie数据

C# 发起HTTP请求并检查回应的Cookie数据,第1张

概述C# 发起HTTP请求并检查回应的Cookie数据

下面是内存溢出 jb51.cc 通过网络收集整理的代码片段。

内存溢出小编现在分享给大家,也给大家做个参考。

 /**   examine cookies.       To see what cookies a Web Site uses,specify its name on the command line.    For example,if you call this program    cookie,then          cookie http://MSN.COM        displays the cookies associated with MSN.COM. */   using System; using System.Net;    public class cookieDemo {    public static voID Main(string[] args) {        if(args.Length != 1) {       Console.Writeline("Usage: cookieDemo <uri>");       return ;     }        // Create a WebRequest to the specifIEd URI.     httpWebRequest req = (httpWebRequest)            WebRequest.Create(args[0]);         // Get an empty cookie container.     req.cookieContainer = new cookieContainer();        // Send the request and return the response.     httpWebResponse resp = (httpWebResponse)            req.GetResponse();        // display the cookies.     Console.Writeline("Number of cookies: " +                          resp.cookies.Count);     Console.Writeline("{0,-20}{1}","name","Value");        for(int i=0; i < resp.cookies.Count; i++)       Console.Writeline("{0,resp.cookies[i].name,resp.cookies[i].Value);        // Close the Response.      resp.Close();   } }

以上是内存溢出(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

总结

以上是内存溢出为你收集整理的C# 发起HTTP请求并检查回应的Cookie数据全部内容,希望文章能够帮你解决C# 发起HTTP请求并检查回应的Cookie数据所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1238079.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-06
下一篇 2022-06-06

发表评论

登录后才能评论

评论列表(0条)

保存