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