15 references to 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)