8 writes to Events
Microsoft.AspNetCore.Authentication (4)
AuthenticationHandler.cs (3)
171Events = Options.Events; 174Events = Context.RequestServices.GetRequiredService(Options.EventsType); 176Events ??= await CreateEventsAsync();
RemoteAuthenticationHandler.cs (1)
37set { base.Events = value; }
Microsoft.AspNetCore.Authentication.Certificate (1)
CertificateAuthenticationHandler.cs (1)
33set { base.Events = value; }
Microsoft.AspNetCore.Authentication.Cookies (1)
CookieAuthenticationHandler.cs (1)
65set { base.Events = value; }
Microsoft.AspNetCore.Authentication.JwtBearer (1)
JwtBearerHandler.cs (1)
46set => base.Events = value;
Microsoft.AspNetCore.Authentication.Negotiate (1)
NegotiateHandler.cs (1)
54set => base.Events = value;
5 references to Events
Microsoft.AspNetCore.Authentication (1)
RemoteAuthenticationHandler.cs (1)
36get { return (RemoteAuthenticationEvents)base.Events!; }
Microsoft.AspNetCore.Authentication.Certificate (1)
CertificateAuthenticationHandler.cs (1)
32get { return (CertificateAuthenticationEvents)base.Events!; }
Microsoft.AspNetCore.Authentication.Cookies (1)
CookieAuthenticationHandler.cs (1)
64get { return (CookieAuthenticationEvents)base.Events!; }
Microsoft.AspNetCore.Authentication.JwtBearer (1)
JwtBearerHandler.cs (1)
45get => (JwtBearerEvents)base.Events!;
Microsoft.AspNetCore.Authentication.Negotiate (1)
NegotiateHandler.cs (1)
53get => (NegotiateEvents)base.Events!;