1 instantiation of CertificateAuthenticationOptions
Aspire.Dashboard.Tests (1)
SecurityOptionsBindingTests.cs (1)
34var options = new CertificateAuthenticationOptions();
30 references to CertificateAuthenticationOptions
Aspire.Dashboard (14)
DashboardWebApplication.cs (14)
1030CertificateAuthenticationOptions options) 1038nameof(CertificateAuthenticationOptions.AllowedCertificateTypes), 1041nameof(CertificateAuthenticationOptions.ChainTrustValidationMode), 1044nameof(CertificateAuthenticationOptions.RevocationFlag), 1047nameof(CertificateAuthenticationOptions.RevocationMode), 1050nameof(CertificateAuthenticationOptions.ValidateCertificateUse), 1053nameof(CertificateAuthenticationOptions.ValidateValidityPeriod), 1056nameof(CertificateAuthenticationOptions.ClaimsIssuer), 1059nameof(CertificateAuthenticationOptions.ForwardAuthenticate), 1062nameof(CertificateAuthenticationOptions.ForwardChallenge), 1065nameof(CertificateAuthenticationOptions.ForwardDefault), 1068nameof(CertificateAuthenticationOptions.ForwardForbid), 1071nameof(CertificateAuthenticationOptions.ForwardSignIn), 1074nameof(CertificateAuthenticationOptions.ForwardSignOut),
Aspire.Dashboard.Tests (1)
SecurityOptionsBindingTests.cs (1)
34var options = new CertificateAuthenticationOptions();
Microsoft.AspNetCore.Authentication.Certificate (15)
CertificateAuthenticationExtensions.cs (5)
52/// <param name="configureOptions">A delegate to configure <see cref="CertificateAuthenticationOptions"/>.</param> 54public static AuthenticationBuilder AddCertificate(this AuthenticationBuilder builder, Action<CertificateAuthenticationOptions>? configureOptions) 67/// <param name="configureOptions">A delegate to configure <see cref="CertificateAuthenticationOptions"/>.</param> 72Action<CertificateAuthenticationOptions>? configureOptions) 73=> builder.AddScheme<CertificateAuthenticationOptions, CertificateAuthenticationHandler>(authenticationScheme, configureOptions);
CertificateAuthenticationHandler.cs (2)
14internal sealed class CertificateAuthenticationHandler : AuthenticationHandler<CertificateAuthenticationOptions> 22IOptionsMonitor<CertificateAuthenticationOptions> options,
CertificateAuthenticationOptions.cs (1)
14/// Initializes a new instance of <see cref="CertificateAuthenticationOptions"/>.
Events\CertificateAuthenticationFailedContext.cs (2)
11public class CertificateAuthenticationFailedContext : ResultContext<CertificateAuthenticationOptions> 22CertificateAuthenticationOptions options)
Events\CertificateChallengeContext.cs (2)
11public class CertificateChallengeContext : PropertiesContext<CertificateAuthenticationOptions> 23CertificateAuthenticationOptions options,
Events\CertificateValidatedContext.cs (3)
12public class CertificateValidatedContext : ResultContext<CertificateAuthenticationOptions> 19/// <param name="options">The <see cref="CertificateAuthenticationOptions"/>.</param> 23CertificateAuthenticationOptions options)