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
3 references to IAuthenticationSignInHandler
Microsoft.AspNetCore.Authentication.Core (3)
AuthenticationService.cs (3)
196var signInHandler = handler as IAuthenticationSignInHandler; 258.Where(sch => typeof(IAuthenticationSignInHandler).IsAssignableFrom(sch.HandlerType))