导读部分
【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是不是非常方便啊。
|