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
3 references to IAuthenticationSignOutHandler
Microsoft.AspNetCore.Authentication.Core (3)
AuthenticationService.cs (3)
230var signOutHandler = handler as IAuthenticationSignOutHandler; 298.Where(sch => typeof(IAuthenticationSignOutHandler).IsAssignableFrom(sch.HandlerType))