IIS 设置

HttpClient设置
var handler = new HttpClientHandler
{
UseProxy = useProxy
};
if (handler.SupportsAutomaticDecompression)
{
handler.AutomaticDecompression = DecompressionMethods.GZip |
DecompressionMethods.Deflate;
}
_client = new HttpClient(handler);