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