Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
CheckCertificateRevocationList
bool
System.Net.Http.HttpClientHandler.CheckCertificateRevocationList
get
set
Definition at line
285
of file
HttpClientHandler.cs
.
286
{
287
get
288
{
289
return
_underlyingHandler.SslOptions.CertificateRevocationCheckMode ==
X509RevocationMode
.Online;
290
}
291
set
292
{
293
ThrowForModifiedManagedSslOptionsIfStarted
();
294
_underlyingHandler.SslOptions.CertificateRevocationCheckMode = (
value
? X509RevocationMode.Online :
X509RevocationMode
.NoCheck);
295
}
296
}
System.Net.Http.HttpClientHandler.ThrowForModifiedManagedSslOptionsIfStarted
void ThrowForModifiedManagedSslOptionsIfStarted()
Definition
HttpClientHandler.cs:344
System.Security.Cryptography.X509Certificates.X509RevocationMode
X509RevocationMode
Definition
X509RevocationMode.cs:4
System.ExceptionArgument.value
@ value
System
Net
Http
HttpClientHandler
Generated by
1.10.0