1 interface inheriting from IAuthenticationSignOutHandler
Microsoft.AspNetCore.Authentication.Abstractions (1)
IAuthenticationSignInHandler.cs (1)
11public interface IAuthenticationSignInHandler : IAuthenticationSignOutHandler
7 implementations of IAuthenticationSignOutHandler
Microsoft.AspNetCore.Authentication (1)
SignOutAuthenticationHandler.cs (1)
13public abstract class SignOutAuthenticationHandler<TOptions> : AuthenticationHandler<TOptions>, IAuthenticationSignOutHandler
Microsoft.AspNetCore.Authentication.Core.Test (4)
AuthenticationSchemeProviderTests.cs (1)
292private class SignOutHandler : Handler, IAuthenticationSignOutHandler
AuthenticationServiceTests.cs (3)
313public class SignOutHandler : IAuthenticationSignOutHandler 341private class UberHandler : IAuthenticationHandler, IAuthenticationRequestHandler, IAuthenticationSignInHandler, IAuthenticationSignOutHandler 379private class ForbidHandler : IAuthenticationHandler, IAuthenticationRequestHandler, IAuthenticationSignInHandler, IAuthenticationSignOutHandler
Microsoft.AspNetCore.Authentication.OpenIdConnect (1)
OpenIdConnectHandler.cs (1)
30public class OpenIdConnectHandler : RemoteAuthenticationHandler<OpenIdConnectOptions>, IAuthenticationSignOutHandler
Microsoft.AspNetCore.Authentication.WsFederation (1)
WsFederationHandler.cs (1)
18public class WsFederationHandler : RemoteAuthenticationHandler<WsFederationOptions>, IAuthenticationSignOutHandler
4 references to IAuthenticationSignOutHandler
Microsoft.AspNetCore.Authentication.Core (2)
AuthenticationService.cs (2)
210if (handler is not IAuthenticationSignOutHandler signOutHandler) 277.Where(sch => typeof(IAuthenticationSignOutHandler).IsAssignableFrom(sch.HandlerType))
Microsoft.AspNetCore.Authentication.Test (2)
AuthenticationMetricsTest.cs (2)
287var authenticationService = CreateAuthenticationService(Mock.Of<IAuthenticationSignOutHandler>(), meterFactory); 308var authenticationHandler = new Mock<IAuthenticationSignOutHandler>();