IAuthenticationSignInHandler Interface

Definition

Used to determine if a handler supports SignIn.

public interface class IAuthenticationSignInHandler : Microsoft::AspNetCore::Authentication::IAuthenticationSignOutHandler
public interface IAuthenticationSignInHandler : Microsoft.AspNetCore.Authentication.IAuthenticationSignOutHandler
type IAuthenticationSignInHandler = interface
    interface IAuthenticationSignOutHandler
    interface IAuthenticationHandler
type IAuthenticationSignInHandler = interface
    interface IAuthenticationHandler
    interface IAuthenticationSignOutHandler
Public Interface IAuthenticationSignInHandler
Implements IAuthenticationSignOutHandler
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)
SignInAsync(ClaimsPrincipal, AuthenticationProperties)

Handle sign in.

SignOutAsync(AuthenticationProperties)

Signout behavior.

(Inherited from IAuthenticationSignOutHandler)

Applies to