1 interface inheriting from IAuthenticationSignOutHandler
Microsoft.AspNetCore.Authentication.Abstractions (1)
IAuthenticationSignInHandler.cs (1)
11public interface IAuthenticationSignInHandler : IAuthenticationSignOutHandler
3 implementations of IAuthenticationSignOutHandler
Microsoft.AspNetCore.Authentication (1)
SignOutAuthenticationHandler.cs (1)
13public abstract class SignOutAuthenticationHandler<TOptions> : AuthenticationHandler<TOptions>, 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
2 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))