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