3 overrides of IsExportable
dotnet-dev-certs (3)
src\Shared\CertificateGeneration\MacOSCertificateManager.cs (1)
305
protected override bool
IsExportable
(X509Certificate2 c) => true;
src\Shared\CertificateGeneration\UnixCertificateManager.cs (1)
182
protected override bool
IsExportable
(X509Certificate2 c) => true;
src\Shared\CertificateGeneration\WindowsCertificateManager.cs (1)
30
protected override bool
IsExportable
(X509Certificate2 c)
2 references to IsExportable
dotnet-dev-certs (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()}";