6 writes to CertificateRevocationCheckMode
System.Net.Http (2)
src\libraries\Common\src\System\Net\Security\SslClientAuthenticationOptionsExtensions.cs (1)
23CertificateRevocationCheckMode = options.CertificateRevocationCheckMode,
System\Net\Http\HttpClientHandler.cs (1)
321_underlyingHandler.SslOptions.CertificateRevocationCheckMode = value ? X509RevocationMode.Online : X509RevocationMode.NoCheck;
System.Net.Requests (1)
System\Net\HttpWebRequest.cs (1)
1740handler.SslOptions.CertificateRevocationCheckMode = parameters.CheckCertificateRevocationList ? X509RevocationMode.Online : X509RevocationMode.NoCheck;
System.Net.Security (3)
System\Net\Security\SslStream.cs (3)
248CertificateRevocationCheckMode = checkCertificateRevocation ? X509RevocationMode.Online : X509RevocationMode.NoCheck, 323CertificateRevocationCheckMode = checkCertificateRevocation ? X509RevocationMode.Online : X509RevocationMode.NoCheck, 385CertificateRevocationCheckMode = checkCertificateRevocation ? X509RevocationMode.Online : X509RevocationMode.NoCheck,
6 references to CertificateRevocationCheckMode
System.Net.Http (2)
src\libraries\Common\src\System\Net\Security\SslClientAuthenticationOptionsExtensions.cs (1)
23CertificateRevocationCheckMode = options.CertificateRevocationCheckMode,
System\Net\Http\HttpClientHandler.cs (1)
317get => _underlyingHandler.SslOptions.CertificateRevocationCheckMode == X509RevocationMode.Online;
System.Net.Quic (2)
System\Net\Quic\QuicConnection.cs (1)
399options.ClientAuthenticationOptions.CertificateRevocationCheckMode,
System\Net\Quic\QuicConnection.SslConnectionOptions.cs (1)
40/// Configured via <see cref="SslServerAuthenticationOptions.CertificateRevocationCheckMode"/> or <see cref="SslClientAuthenticationOptions.CertificateRevocationCheckMode"/>.
System.Net.Security (2)
System\Net\Security\SslAuthenticationOptions.cs (1)
56CertificateRevocationCheckMode = sslClientAuthenticationOptions.CertificateRevocationCheckMode;
System\Net\Security\SslClientAuthenticationOptions.cs (1)
95/// <see cref="CertificateRevocationCheckMode"/> and <see cref="SslCertificateTrust"/>