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