10 references to Full
dotnet-dev-certs (10)
Program.cs (1)
304var trustedCertificates = certificates.Where(cert => certificateManager.GetTrustLevel(cert) == CertificateManager.TrustLevel.Full).ToList();
src\Shared\CertificateGeneration\CertificateManager.cs (1)
360case TrustLevel.Full:
src\Shared\CertificateGeneration\MacOSCertificateManager.cs (3)
90Debug.Assert(oldTrustLevel == TrustLevel.Full); // Mac trust is all or nothing 114return TrustLevel.Full; 169return checkTrustProcess.ExitCode == 0 ? TrustLevel.Full : TrustLevel.None;
src\Shared\CertificateGeneration\UnixCertificateManager.cs (2)
148: TrustLevel.Full 356: TrustLevel.Full;
src\Shared\CertificateGeneration\WindowsCertificateManager.cs (3)
82return TrustLevel.Full; 92return TrustLevel.Full; 124return isTrusted ? TrustLevel.Full : TrustLevel.None;