1 write to EventsType
Microsoft.AspNetCore.Authentication.DeviceBoundSessions (1)
PostConfigureDeviceBoundSessionCookieOptions.cs (1)
52
options.
EventsType
= null;
6 references to EventsType
Microsoft.AspNetCore.Authentication (2)
AuthenticationHandler.cs (2)
172
if (Options.
EventsType
!= null)
174
Events = Context.RequestServices.GetRequiredService(Options.
EventsType
);
Microsoft.AspNetCore.Authentication.DeviceBoundSessions (4)
PostConfigureDeviceBoundSessionCookieOptions.cs (2)
33
if (options.
EventsType
is null)
51
options.Events = new DeviceBoundSessionCookieEvents(dbscScheme, options.Events, options.
EventsType
);
PostConfigureDeviceBoundSessionDerivedCookieOptions.cs (2)
105
var sourceEvents = sourceOptions.
EventsType
is not null
106
? (CookieAuthenticationEvents)services.GetRequiredService(sourceOptions.
EventsType
)