3 overrides of IsExportable
aspire (3)
Certificates\CertificateGeneration\MacOSCertificateManager.cs (1)
305internal override bool IsExportable(X509Certificate2 c) => true;
Certificates\CertificateGeneration\UnixCertificateManager.cs (1)
201internal override bool IsExportable(X509Certificate2 c) => true;
Certificates\CertificateGeneration\WindowsCertificateManager.cs (1)
28internal override bool IsExportable(X509Certificate2 c)
3 references to IsExportable
aspire (3)
Certificates\CertificateGeneration\CertificateManager.cs (2)
224(!requireExportable || IsExportable(certificate)); 1043$"{c.Thumbprint} - {c.Subject} - Valid from {c.NotBefore:u} to {c.NotAfter:u} - IsHttpsDevelopmentCertificate: {IsHttpsDevelopmentCertificate(c).ToString().ToLowerInvariant()} - IsExportable: {IsExportable(c).ToString().ToLowerInvariant()}";
Certificates\NativeCertificateToolRunner.cs (1)
41IsExportable = certificateManager.IsExportable(cert),