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