29 instantiations of CertificateAuthenticationOptions
Microsoft.AspNetCore.Authentication.Test (29)
CertificateTests.cs (29)
28
var options = new
CertificateAuthenticationOptions
();
55
new
CertificateAuthenticationOptions
71
new
CertificateAuthenticationOptions
87
new
CertificateAuthenticationOptions
102
new
CertificateAuthenticationOptions
118
new
CertificateAuthenticationOptions
134
new
CertificateAuthenticationOptions
151
new
CertificateAuthenticationOptions
169
new
CertificateAuthenticationOptions
186
new
CertificateAuthenticationOptions
204
new
CertificateAuthenticationOptions
221
new
CertificateAuthenticationOptions
238
new
CertificateAuthenticationOptions
254
new
CertificateAuthenticationOptions
271
new
CertificateAuthenticationOptions
285
new
CertificateAuthenticationOptions
300
new
CertificateAuthenticationOptions
323
new
CertificateAuthenticationOptions
340
new
CertificateAuthenticationOptions
357
new
CertificateAuthenticationOptions
375
new
CertificateAuthenticationOptions
392
new
CertificateAuthenticationOptions
410
new
CertificateAuthenticationOptions
427
new
CertificateAuthenticationOptions
446
new
CertificateAuthenticationOptions
464
new
CertificateAuthenticationOptions
575
new
CertificateAuthenticationOptions
649
new
CertificateAuthenticationOptions
702
new
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>
54
public static AuthenticationBuilder AddCertificate(this AuthenticationBuilder builder, Action<
CertificateAuthenticationOptions
>? configureOptions)
67
/// <param name="configureOptions">A delegate to configure <see cref="
CertificateAuthenticationOptions
"/>.</param>
72
Action<
CertificateAuthenticationOptions
>? configureOptions)
73
=> builder.AddScheme<
CertificateAuthenticationOptions
, CertificateAuthenticationHandler>(authenticationScheme, configureOptions);
CertificateAuthenticationHandler.cs (2)
14
internal sealed class CertificateAuthenticationHandler : AuthenticationHandler<
CertificateAuthenticationOptions
>
20
IOptionsMonitor<
CertificateAuthenticationOptions
> options,
CertificateAuthenticationOptions.cs (1)
14
/// Initializes a new instance of <see cref="
CertificateAuthenticationOptions
"/>.
Events\CertificateAuthenticationFailedContext.cs (2)
11
public class CertificateAuthenticationFailedContext : ResultContext<
CertificateAuthenticationOptions
>
22
CertificateAuthenticationOptions
options)
Events\CertificateChallengeContext.cs (2)
11
public class CertificateChallengeContext : PropertiesContext<
CertificateAuthenticationOptions
>
23
CertificateAuthenticationOptions
options,
Events\CertificateValidatedContext.cs (3)
12
public class CertificateValidatedContext : ResultContext<
CertificateAuthenticationOptions
>
19
/// <param name="options">The <see cref="
CertificateAuthenticationOptions
"/>.</param>
23
CertificateAuthenticationOptions
options)
Microsoft.AspNetCore.Authentication.Test (2)
CertificateTests.cs (2)
28
var
options = new CertificateAuthenticationOptions();
794
CertificateAuthenticationOptions
configureOptions,