3 instantiations of CertificateAuthenticationEvents
Aspire.Dashboard (1)
DashboardWebApplication.cs (1)
739options.Events = new CertificateAuthenticationEvents
Microsoft.AspNetCore.Authentication.Certificate (2)
CertificateAuthenticationHandler.cs (1)
42protected override Task<object> CreateEventsAsync() => Task.FromResult<object>(new CertificateAuthenticationEvents());
CertificateAuthenticationOptions.cs (1)
18Events = new CertificateAuthenticationEvents();
4 references to CertificateAuthenticationEvents
Microsoft.AspNetCore.Authentication.Certificate (4)
CertificateAuthenticationHandler.cs (2)
32private new CertificateAuthenticationEvents Events 34get { return (CertificateAuthenticationEvents)base.Events!; }
CertificateAuthenticationOptions.cs (2)
88public new CertificateAuthenticationEvents? Events 90get { return (CertificateAuthenticationEvents?)base.Events; }