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