HttpClient + IIS压缩动态内容

IIS 设置

HttpClient设置

 var handler = new HttpClientHandler
            {
                UseProxy = useProxy
            };

            if (handler.SupportsAutomaticDecompression)
            {
                handler.AutomaticDecompression = DecompressionMethods.GZip |
                                                 DecompressionMethods.Deflate;
            }

            _client = new HttpClient(handler);

  

原文地址:https://www.cnblogs.com/ddeef/p/enable-compress-between-httpclient-iis.html