导读部分
【HttpHelper万能框架】教程目录贴 http://www.sufeinet.com/thread-9989-1-1.html
教程部分
方法签名如下
[C#] 纯文本查看 复制代码 /// <summary>
/// 将CookieCollection转为字符串Cookie
/// </summary>
/// <param name="cookie">Cookie字符串</param>
/// <returns>strcookie</returns>
public static string CookieCollectionToStrCookie(CookieCollection cookie)
使用方法很简单,向下看
第一步引入命名空间
[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.CookieCollection //默认值可以不写
};
//请求的返回值对象
HttpResult result = http.GetHtml(item);
//获取请求的Cookie
CookieCollection cookie = result.CookieCollection;
//CookieCollection类型Cookiel转为字符串Cookie
string strcookie = HttpHelper.CookieCollectionToStrCookie(cookie);
有了这个方法大家如果想把字符串CookieCollection转为字符串 类型的Cookie就是一件很简单的事情了。
|