苏飞论坛

标题: 字符串Cookie转为CookieCollection类型Cookie [打印本页]

作者: 站长苏飞    时间: 2014-9-9 15:14
标题: 字符串Cookie转为CookieCollection类型Cookie
导读部分

【HttpHelper万能框架】教程目录贴  http://www.sufeinet.com/thread-9989-1-1.html


教程部分


方法签名如下
[C#] 纯文本查看 复制代码
  /// <summary>        /// 将字符串Cookie转为CookieCollection
        /// </summary>
        /// <param name="strcookie">Cookie字符串</param>
        /// <returns>List-CookieItem</returns>
        public static CookieCollection StrCookieToCookieCollection(string strcookie)


使用方法很简单,向下看

第一步引入命名空间
[C#] 纯文本查看 复制代码
using CsharpHttpHelper;
using CsharpHttpHelper.Enum;

第二步,设置方法如下
[C#] 纯文本查看 复制代码
              //创建Httphelper对象
            HttpHelper http = new HttpHelper();
            //创建Httphelper参数对象
            HttpItem item = new HttpItem()
            {
                URL = "http://www.sufeinet.com",//URL     必需项   
                Method = "get",//URL     可选项 默认为Get   
                ContentType = "text/html",//返回类型    可选项有默认值   
                //ResultCookieType = ResultCookieType.String //默认值可以不写
            };
            //请求的返回值对象
            HttpResult result = http.GetHtml(item);
            //获取请求的Cookie
            string cookie = result.Cookie;

            //字符串Cookie转为CookieCollection类型Cookie
            CookieCollection cookielist = HttpHelper.StrCookieToCookieCollection(cookie);


有了这个方法大家如果想把字符串Cookie转为CookieCollection 类型的Cookie是不是非常方便啊。





作者: 水手    时间: 2014-9-9 15:55
强烈支持楼主ing……
Cookies字符串表示已经很好用了~~
作者: Cheungnotes    时间: 2014-9-15 08:27
看帖必回好习惯
作者: Knight.Dj    时间: 2015-2-5 10:36
我引用了两个命名空间,在定义 CookieCollection cookielist 时报缺少命名空间是怎么回事呢。
作者: 站长苏飞    时间: 2015-4-13 17:21
Knight.Dj 发表于 2015-2-5 10:36
我引用了两个命名空间,在定义 CookieCollection cookielist 时报缺少命名空间是怎么回事呢。

贴下代码看看吧,或者让他自动引用一下
作者: foodztf    时间: 2016-1-22 13:38
小米 登录的 例子 直接报错 。有没有 好用的例子?
作者: luocaihuang    时间: 2016-4-25 11:52
水手 发表于 2014-9-9 15:55
强烈支持楼主ing……
Cookies字符串表示已经很好用了~~

我转换了之后访问不行
作者: echoxxx    时间: 2021-4-9 16:38
domain为“”引用时会报错




欢迎光临 苏飞论坛 (http://www.sufeinet.com/) Powered by Discuz! X3.4