1 type derived from CookieAuthenticationEvents
Microsoft.AspNetCore.Authentication.DeviceBoundSessions (1)
DeviceBoundSessionCookieEvents.cs (1)
18internal sealed class DeviceBoundSessionCookieEvents : CookieAuthenticationEvents
8 instantiations of CookieAuthenticationEvents
Microsoft.AspNetCore.Authentication.Cookies (2)
CookieAuthenticationHandler.cs (1)
81protected override Task<object> CreateEventsAsync() => Task.FromResult<object>(new CookieAuthenticationEvents());
CookieAuthenticationOptions.cs (1)
33Events = 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
14 references to CookieAuthenticationEvents
Microsoft.AspNetCore.Authentication.Cookies (6)
CookieAuthenticationHandler.cs (2)
63protected new CookieAuthenticationEvents Events 65get { 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)"/>
Microsoft.AspNetCore.Authentication.DeviceBoundSessions (8)
DeviceBoundSessionCookieEvents.cs (5)
14/// A <see cref="CookieAuthenticationEvents"/> decorator used when a DBSC source cookie scheme sets 21private readonly CookieAuthenticationEvents _innerEvents; 24public DeviceBoundSessionCookieEvents(string dbscScheme, CookieAuthenticationEvents innerEvents, Type? innerEventsType) 78private CookieAuthenticationEvents GetInnerEvents(HttpContext httpContext) 85return (CookieAuthenticationEvents)httpContext.RequestServices.GetRequiredService(_innerEventsType);
PostConfigureDeviceBoundSessionCookieOptions.cs (1)
12/// chains <see cref="CookieAuthenticationEvents.OnSigningIn"/>; for <c>EventsType</c> scenarios it
PostConfigureDeviceBoundSessionDerivedCookieOptions.cs (2)
105var sourceEvents = sourceOptions.EventsType is not null 106? (CookieAuthenticationEvents)services.GetRequiredService(sourceOptions.EventsType)