3 overrides of IsExportable
aspire (3)
Certificates\CertificateGeneration\MacOSCertificateManager.cs (1)
305
internal override bool
IsExportable
(X509Certificate2 c) => true;
Certificates\CertificateGeneration\UnixCertificateManager.cs (1)
201
internal override bool
IsExportable
(X509Certificate2 c) => true;
Certificates\CertificateGeneration\WindowsCertificateManager.cs (1)
28
internal 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)
41
IsExportable = certificateManager.
IsExportable
(cert),