29 instantiations of CertificateAuthenticationOptions
Microsoft.AspNetCore.Authentication.Test (29)
CertificateTests.cs (29)
28var options = new CertificateAuthenticationOptions(); 55new CertificateAuthenticationOptions 71new CertificateAuthenticationOptions 87new CertificateAuthenticationOptions 102new CertificateAuthenticationOptions 118new CertificateAuthenticationOptions 134new CertificateAuthenticationOptions 151new CertificateAuthenticationOptions 169new CertificateAuthenticationOptions 186new CertificateAuthenticationOptions 204new CertificateAuthenticationOptions 221new CertificateAuthenticationOptions 238new CertificateAuthenticationOptions 254new CertificateAuthenticationOptions 271new CertificateAuthenticationOptions 285new CertificateAuthenticationOptions 300new CertificateAuthenticationOptions 323new CertificateAuthenticationOptions 340new CertificateAuthenticationOptions 357new CertificateAuthenticationOptions 375new CertificateAuthenticationOptions 392new CertificateAuthenticationOptions 410new CertificateAuthenticationOptions 427new CertificateAuthenticationOptions 446new CertificateAuthenticationOptions 464new CertificateAuthenticationOptions 575new CertificateAuthenticationOptions 649new CertificateAuthenticationOptions 702new CertificateAuthenticationOptions
17 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> 20IOptionsMonitor<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)
Microsoft.AspNetCore.Authentication.Test (2)
CertificateTests.cs (2)
28var options = new CertificateAuthenticationOptions(); 794CertificateAuthenticationOptions configureOptions,