IAuthenticationRequestHandler Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Used to determine if a handler wants to participate in request processing.
public interface class IAuthenticationRequestHandler : Microsoft::AspNetCore::Authentication::IAuthenticationHandler
public interface IAuthenticationRequestHandler : Microsoft.AspNetCore.Authentication.IAuthenticationHandler
type IAuthenticationRequestHandler = interface
interface IAuthenticationHandler
Public Interface IAuthenticationRequestHandler
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) |
HandleRequestAsync() |
Gets a value that determines if the request should stop being processed.
This feature is supported by the Authentication middleware
which does not invoke any subsequent IAuthenticationHandler or middleware configured in the request pipeline
if the handler returns |
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) |