1 write to HandlerType
Microsoft.AspNetCore.Authentication.Abstractions (1)
AuthenticationScheme.cs (1)
30HandlerType = handlerType;
5 references to HandlerType
Microsoft.AspNetCore.Authentication.Core (5)
AuthenticationHandlerProvider.cs (2)
49var handler = (context.RequestServices.GetService(scheme.HandlerType) ?? 50ActivatorUtilities.CreateInstance(context.RequestServices, scheme.HandlerType))
AuthenticationSchemeProvider.cs (1)
149if (typeof(IAuthenticationRequestHandler).IsAssignableFrom(scheme.HandlerType))
AuthenticationService.cs (2)
237.Where(sch => typeof(IAuthenticationSignInHandler).IsAssignableFrom(sch.HandlerType)) 277.Where(sch => typeof(IAuthenticationSignOutHandler).IsAssignableFrom(sch.HandlerType))