We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1ae272 commit 4b7d4abCopy full SHA for 4b7d4ab
src/WeihanLi.Common/Helpers/HttpHelper.cs
@@ -84,7 +84,6 @@ public static bool IsWellKnownContentHeader(string header)
84
private static readonly Lazy<HttpClient> SharedHttpClient = new(() => new(new NoProxyHttpClientHandler()
85
{
86
UseCookies = false,
87
- CheckCertificateRevocationList = false,
88
#if NET
89
AutomaticDecompression = DecompressionMethods.All
90
#else
src/WeihanLi.Common/Http/NoProxyHttpClientHandler.cs
@@ -8,5 +8,6 @@ public NoProxyHttpClientHandler()
8
UseProxy = false;
9
UseCookies = false;
10
AllowAutoRedirect = false;
11
+ CheckCertificateRevocationList = false;
12
}
13
0 commit comments