1 instantiation of CertificateChallengeContext
Microsoft.AspNetCore.Authentication.Certificate (1)
CertificateAuthenticationHandler.cs (1)
174var authenticationChallengedContext = new CertificateChallengeContext(Context, Scheme, Options, properties);
4 references to CertificateChallengeContext
Microsoft.AspNetCore.Authentication.Certificate (4)
CertificateAuthenticationHandler.cs (1)
174var authenticationChallengedContext = new CertificateChallengeContext(Context, Scheme, Options, properties);
Events\CertificateAuthenticationEvents.cs (2)
31public Func<CertificateChallengeContext, Task> OnChallenge { get; set; } = context => Task.CompletedTask; 50public virtual Task Challenge(CertificateChallengeContext context) => OnChallenge(context);
Events\CertificateChallengeContext.cs (1)
14/// Creates a new <see cref="CertificateChallengeContext"/>.