9 implementations of IAuthenticationSignInHandler
Microsoft.AspNetCore.Authentication (1)
SignInAuthenticationHandler.cs (1)
14public abstract class SignInAuthenticationHandler<TOptions> : SignOutAuthenticationHandler<TOptions>, IAuthenticationSignInHandler
Microsoft.AspNetCore.Authentication.Core.Test (4)
AuthenticationSchemeProviderTests.cs (1)
279private class SignInHandler : Handler, IAuthenticationSignInHandler
AuthenticationServiceTests.cs (3)
280private class SignInHandler : IAuthenticationSignInHandler 341private class UberHandler : IAuthenticationHandler, IAuthenticationRequestHandler, IAuthenticationSignInHandler, IAuthenticationSignOutHandler 379private class ForbidHandler : IAuthenticationHandler, IAuthenticationRequestHandler, IAuthenticationSignInHandler, IAuthenticationSignOutHandler
Microsoft.AspNetCore.Authentication.Test (4)
PolicyTests.cs (2)
361private class TestHandler : IAuthenticationSignInHandler 411private class TestHandler2 : IAuthenticationSignInHandler
TestHandlers.cs (2)
12public class TestAuthHandler : AuthenticationHandler<AuthenticationSchemeOptions>, IAuthenticationSignInHandler 58public class TestHandler : IAuthenticationSignInHandler
4 references to IAuthenticationSignInHandler
Microsoft.AspNetCore.Authentication.Core (2)
AuthenticationService.cs (2)
182if (handler is not IAuthenticationSignInHandler signInHandler) 237.Where(sch => typeof(IAuthenticationSignInHandler).IsAssignableFrom(sch.HandlerType))
Microsoft.AspNetCore.Authentication.Test (2)
AuthenticationMetricsTest.cs (2)
236var authenticationService = CreateAuthenticationService(Mock.Of<IAuthenticationSignInHandler>(), meterFactory); 257var authenticationHandler = new Mock<IAuthenticationSignInHandler>();