12 references to ExcludeRoot
Microsoft.AspNetCore.Authentication.Certificate (2)
CertificateAuthenticationOptions.cs (2)
63
/// Defaults to <see cref="X509RevocationFlag.
ExcludeRoot
" />.
65
public X509RevocationFlag RevocationFlag { get; set; } = X509RevocationFlag.
ExcludeRoot
;
Microsoft.DotNet.SignCheckLibrary (1)
Verification\VsixVerifier.cs (1)
164
certChain.ChainPolicy.RevocationFlag = X509RevocationFlag.
ExcludeRoot
;
System.Net.Quic (1)
System\Net\Quic\QuicConnection.SslConnectionOptions.cs (1)
194
chain.ChainPolicy.RevocationFlag = X509RevocationFlag.
ExcludeRoot
;
System.Net.Security (1)
System\Net\Security\SslStream.Protocol.cs (1)
1077
chain.ChainPolicy.RevocationFlag = X509RevocationFlag.
ExcludeRoot
;
System.Security.Cryptography (6)
System\Security\Cryptography\X509Certificates\ManagedCertificateFinder.cs (1)
367
RevocationFlag = X509RevocationFlag.
ExcludeRoot
System\Security\Cryptography\X509Certificates\OpenSslX509ChainProcessor.cs (3)
375
case X509RevocationFlag.
ExcludeRoot
:
525
if (encounteredRevocation && revocationFlag == X509RevocationFlag.
ExcludeRoot
)
530
else if (refErrors.HasRevocationUnknown() && revocationFlag != X509RevocationFlag.
ExcludeRoot
)
System\Security\Cryptography\X509Certificates\X509ChainPolicy.cs (2)
75
if (value < X509RevocationFlag.EndCertificateOnly || value > X509RevocationFlag.
ExcludeRoot
)
129
_revocationFlag = X509RevocationFlag.
ExcludeRoot
;
System.Security.Cryptography.Pkcs (1)
System\Security\Cryptography\Pkcs\SignerInfo.cs (1)
712
chain.ChainPolicy.RevocationFlag = X509RevocationFlag.
ExcludeRoot
;