HttpClient + IIS压缩动态内容
2020-08-11 21:33 山不转水转... 阅读(183) 评论(0) 收藏 举报IIS 设置

HttpClient设置
var handler = new HttpClientHandler
{
UseProxy = useProxy
};
if (handler.SupportsAutomaticDecompression)
{
handler.AutomaticDecompression = DecompressionMethods.GZip |
DecompressionMethods.Deflate;
}
_client = new HttpClient(handler);
浙公网安备 33010602011771号