HtmlAgilityPack HtmlWeb.Load() 不支持 gzip 的解决方法
程序员文章站
2024-02-29 09:45:58
...
_htmlWeb = new HtmlWeb();
HtmlWeb.PreRequestHandler handler = delegate (HttpWebRequest request)
{
request.Headers[HttpRequestHeader.AcceptEncoding] = "gzip, deflate";
request.AutomaticDecompression = DecompressionMethods.Deflate | DecompressionMethods.GZip;
request.CookieContainer = new System.Net.CookieContainer();
return true;
};
_htmlWeb.PreRequest += handler;
下一篇: (转)gzip文件格式详解
推荐阅读
-
HtmlAgilityPack HtmlWeb.Load() 不支持 gzip 的解决方法
-
服务器不支持 MySql 数据库的解决方法
-
MySQL不支持GBK编码的解决方法
-
MySQL中Union子句不支持order by的解决方法
-
服务器不支持 MySql 数据库的解决方法
-
微信小程序des加密不支持btoa的解决方法
-
MySQL不支持InnoDB的解决方法
-
jQuery '行 4954 错误: 不支持该属性或方法' 的问题解决方法_jquery
-
PHP中file_exists函数不支持中文名的解决方法_PHP教程
-
IE6-IE9不支持table.innerHTML的解决方法分享_javascript技巧