1 write to AllowedCertificateTypes
Aspire.Dashboard (1)
DashboardWebApplication.cs (1)
1037options.AllowedCertificateTypes = configuration.GetValue(
5 references to AllowedCertificateTypes
Aspire.Dashboard (2)
DashboardWebApplication.cs (2)
1038nameof(CertificateAuthenticationOptions.AllowedCertificateTypes), 1039options.AllowedCertificateTypes);
Aspire.Dashboard.Tests (1)
SecurityOptionsBindingTests.cs (1)
40Assert.Equal(CertificateTypes.All, options.AllowedCertificateTypes);
Microsoft.AspNetCore.Authentication.Certificate (2)
CertificateAuthenticationHandler.cs (2)
125!Options.AllowedCertificateTypes.HasFlag(CertificateTypes.SelfSigned)) 134!Options.AllowedCertificateTypes.HasFlag(CertificateTypes.Chained))