5 references to System
Microsoft.AspNetCore.Authentication.Certificate (2)
CertificateAuthenticationOptions.cs (2)
35/// Defaults to <see cref="X509ChainTrustMode.System"/>. 38public X509ChainTrustMode ChainTrustValidationMode { get; set; } = X509ChainTrustMode.System;
System.Security.Cryptography (3)
System\Security\Cryptography\X509Certificates\X509Chain.cs (1)
105if (_chainPolicy.TrustMode == X509ChainTrustMode.System && _chainPolicy.CustomTrustStore.Count > 0)
System\Security\Cryptography\X509Certificates\X509ChainPolicy.cs (2)
103if (value < X509ChainTrustMode.System || value > X509ChainTrustMode.CustomRootTrust) 131_trustMode = X509ChainTrustMode.System;