导读部分
【HttpHelper万能框架】教程目录贴 http://www.sufeinet.com/thread-9989-1-1.html
教程部分
每一次的Http请求都有一个响应头信息比如我们访问本站主页
如果我现在想获取
[C#] 纯文本查看 复制代码 Vary Accept-Encoding
X-Cache pass
X-Server shijiazhuang01-cdn12.fhl
如上三条怎么办呢
看代码吧,非常简单
第一步引入命名空间[C#] 纯文本查看 复制代码 using CsharpHttpHelper;
第二步获取代码
[C#] 纯文本查看 复制代码
//创建Httphelper对象
HttpHelper http = new HttpHelper();
//创建Httphelper参数对象
HttpItem item = new HttpItem()
{
URL = "http://www.sufeinet.com",//URL 必需项
Method = "get",//URL 可选项 默认为Get
ContentType = "text/html",//返回类型 可选项有默认值
//ContentType = "application/x-www-form-urlencoded",//返回类型 可选项有默认值
};
//请求的返回值对象
HttpResult result = http.GetHtml(item);
//获取请请求的Html
string html = result.Html;
//获取请求的Cookie
string cookie = result.Cookie;
//Header
WebHeaderCollection header = result.Header;
if (header != null)
{
string Vary = header["Vary"];
string XCache = header["X-Cache"];
string XServer = header["X-Server"];
}
执行结果如下
简单吧,
这就是Httphelper万能框架的优点
|