3 overrides of IsExportable
Templates.Blazor.Tests (3)
src\Shared\CertificateGeneration\MacOSCertificateManager.cs (1)
305protected override bool IsExportable(X509Certificate2 c) => true;
src\Shared\CertificateGeneration\UnixCertificateManager.cs (1)
182protected override bool IsExportable(X509Certificate2 c) => true;
src\Shared\CertificateGeneration\WindowsCertificateManager.cs (1)
30protected override bool IsExportable(X509Certificate2 c)
2 references to IsExportable
Templates.Blazor.Tests (2)
src\Shared\CertificateGeneration\CertificateManager.cs (2)
172(!requireExportable || IsExportable(certificate)) && 858$"{c.Thumbprint} - {c.Subject} - Valid from {c.NotBefore:u} to {c.NotAfter:u} - IsHttpsDevelopmentCertificate: {IsHttpsDevelopmentCertificate(c).ToString().ToLowerInvariant()} - IsExportable: {Instance.IsExportable(c).ToString().ToLowerInvariant()}";