1 write to HandlerType
Microsoft.AspNetCore.Authentication.Abstractions (1)
AuthenticationScheme.cs (1)
30HandlerType = handlerType;
11 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)
258.Where(sch => typeof(IAuthenticationSignInHandler).IsAssignableFrom(sch.HandlerType)) 298.Where(sch => typeof(IAuthenticationSignOutHandler).IsAssignableFrom(sch.HandlerType))
Microsoft.AspNetCore.Authentication.Test (4)
CertificateTests.cs (1)
35Assert.Equal("CertificateAuthenticationHandler", scheme.HandlerType.Name);
SharedAuthenticationTests.cs (1)
545Assert.Equal(HandlerType, scheme.HandlerType);
WsFederation\WsFederationTest.cs (1)
36Assert.Equal("WsFederationHandler", scheme.HandlerType.Name);
WsFederation\WsFederationTest_Handler.cs (1)
34Assert.Equal("WsFederationHandler", scheme.HandlerType.Name);
Microsoft.AspNetCore.Server.IISIntegration.Tests (2)
IISMiddlewareTests.cs (2)
412Assert.Equal("Microsoft.AspNetCore.Server.IISIntegration.AuthenticationHandler", windows.HandlerType.FullName); 457Assert.Equal("AuthenticationHandler", windowsAuth.HandlerType.Name);