23 instantiations of CookieAuthenticationEvents
CookieSample (1)
Program.cs (1)
16options.Events = new CookieAuthenticationEvents()
Microsoft.AspNetCore.Authentication.Cookies (2)
CookieAuthenticationHandler.cs (1)
80protected override Task<object> CreateEventsAsync() => Task.FromResult<object>(new CookieAuthenticationEvents());
CookieAuthenticationOptions.cs (1)
33Events = new CookieAuthenticationEvents();
Microsoft.AspNetCore.Authentication.Test (14)
CookieTests.cs (14)
564o.Events = new CookieAuthenticationEvents 594o.Events = new CookieAuthenticationEvents 623o.Events = new CookieAuthenticationEvents 660o.Events = new CookieAuthenticationEvents 704o.Events = new CookieAuthenticationEvents 733o.Events = new CookieAuthenticationEvents 781o.Events = new CookieAuthenticationEvents 826o.Events = new CookieAuthenticationEvents 882o.Events = new CookieAuthenticationEvents 942o.Events = new CookieAuthenticationEvents 992o.Events = new CookieAuthenticationEvents 1043o.Events = new CookieAuthenticationEvents() 1164o.Events = new CookieAuthenticationEvents() 1751o.Events = new CookieAuthenticationEvents
Microsoft.AspNetCore.Identity (6)
IdentityCookiesBuilderExtensions.cs (3)
52o.Events = new CookieAuthenticationEvents 85o.Events = new CookieAuthenticationEvents 103o.Events = new CookieAuthenticationEvents
IdentityServiceCollectionExtensions.cs (3)
62o.Events = new CookieAuthenticationEvents 75o.Events = new CookieAuthenticationEvents 83o.Events = new CookieAuthenticationEvents
6 references to CookieAuthenticationEvents
Microsoft.AspNetCore.Authentication.Cookies (6)
CookieAuthenticationHandler.cs (2)
62protected new CookieAuthenticationEvents Events 64get { return (CookieAuthenticationEvents)base.Events!; }
CookieAuthenticationOptions.cs (2)
99public new CookieAuthenticationEvents Events 101get => (CookieAuthenticationEvents)base.Events!;
CookieSigningInContext.cs (1)
10/// Context object passed to the <see cref="CookieAuthenticationEvents.SigningIn(CookieSigningInContext)"/>.
CookieSigningOutContext.cs (1)
9/// Context object passed to the <see cref="CookieAuthenticationEvents.SigningOut(CookieSigningOutContext)"/>