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