7 references to CertificateAuthenticationDefaults
Aspire.Dashboard (1)
Authentication\OtlpCompositeAuthenticationHandler.cs (1)
50
yield return
CertificateAuthenticationDefaults
.AuthenticationScheme;
Certificate.Optional.Sample (1)
Startup.cs (1)
15
services.AddAuthentication(
CertificateAuthenticationDefaults
.AuthenticationScheme)
Certificate.Sample (1)
Startup.cs (1)
15
services.AddAuthentication(
CertificateAuthenticationDefaults
.AuthenticationScheme)
Microsoft.AspNetCore.Authentication.Certificate (3)
CertificateAuthenticationExtensions.cs (2)
27
=> builder.AddCertificate(
CertificateAuthenticationDefaults
.AuthenticationScheme);
55
=> builder.AddCertificate(
CertificateAuthenticationDefaults
.AuthenticationScheme, configureOptions);
CertificateAuthenticationHandler.cs (1)
289
var identity = new ClaimsIdentity(claims,
CertificateAuthenticationDefaults
.AuthenticationScheme);
Microsoft.AspNetCore.Authentication.Test (1)
CertificateTests.cs (1)
33
var scheme = await schemeProvider.GetSchemeAsync(
CertificateAuthenticationDefaults
.AuthenticationScheme);