11 references to Full
Microsoft.AspNetCore.Shared.Tests (11)
src\Shared\CertificateGeneration\CertificateManager.cs (1)
480
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)
167
: TrustLevel.
Full
440
: TrustLevel.
Full
;
src\Shared\CertificateGeneration\WindowsCertificateManager.cs (3)
82
return TrustLevel.
Full
;
92
return TrustLevel.
Full
;
124
return isTrusted ? TrustLevel.
Full
: TrustLevel.None;
TestCertificateManager.cs (2)
48
public TrustLevel TrustResult { get; set; } = TrustLevel.
Full
;
290
return IsCertificateInStore(StoreName.Root, certificate) ? TrustLevel.
Full
: TrustLevel.None;