IAuthenticationSignOutHandler Interface

Definition

Used to determine if a handler supports SignOut.

public interface class IAuthenticationSignOutHandler : Microsoft::AspNetCore::Authentication::IAuthenticationHandler
public interface IAuthenticationSignOutHandler : Microsoft.AspNetCore.Authentication.IAuthenticationHandler
type IAuthenticationSignOutHandler = interface
    interface IAuthenticationHandler
Public Interface IAuthenticationSignOutHandler
Implements IAuthenticationHandler
Derived
Implements

Methods

AuthenticateAsync()

Authenticate the current request.

(Inherited from IAuthenticationHandler)
ChallengeAsync(AuthenticationProperties)

Challenge the current request.

(Inherited from IAuthenticationHandler)
ForbidAsync(AuthenticationProperties)

Forbid the current request.

(Inherited from IAuthenticationHandler)
InitializeAsync(AuthenticationScheme, HttpContext)

Initialize the authentication handler. The handler should initialize anything it needs from the request and scheme as part of this method.

(Inherited from IAuthenticationHandler)
SignOutAsync(AuthenticationProperties)

Signout behavior.

Applies to