1 instantiation of CertificateValidatedContext
Microsoft.AspNetCore.Authentication.Certificate (1)
CertificateAuthenticationHandler.cs (1)
155
var certificateValidatedContext = new
CertificateValidatedContext
(Context, Scheme, Options)
4 references to CertificateValidatedContext
Microsoft.AspNetCore.Authentication.Certificate (4)
CertificateAuthenticationHandler.cs (1)
155
var
certificateValidatedContext = new CertificateValidatedContext(Context, Scheme, Options)
Events\CertificateAuthenticationEvents.cs (2)
26
public Func<
CertificateValidatedContext
, Task> OnCertificateValidated { get; set; } = context => Task.CompletedTask;
45
public virtual Task CertificateValidated(
CertificateValidatedContext
context) => OnCertificateValidated(context);
Events\CertificateValidatedContext.cs (1)
15
/// Creates a new instance of <see cref="
CertificateValidatedContext
"/>.