IAuthenticationRequestHandler インターフェイス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ハンドラーが要求処理に参加するかどうかを判断するために使用されます。
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
- 派生
- 実装
メソッド
AuthenticateAsync() |
現在の要求を認証します。 (継承元 IAuthenticationHandler) |
ChallengeAsync(AuthenticationProperties) |
現在の要求にチャレンジします。 (継承元 IAuthenticationHandler) |
ForbidAsync(AuthenticationProperties) |
現在の要求を禁止します。 (継承元 IAuthenticationHandler) |
HandleRequestAsync() |
要求の処理を停止するかどうかを決定する値を取得します。
この機能は、ハンドラーが を返した場合に要求パイプラインで構成された後続 IAuthenticationHandler のミドルウェアやミドルウェアを呼び出さない認証ミドルウェアでサポートされています |
InitializeAsync(AuthenticationScheme, HttpContext) |
認証ハンドラーを初期化します。 ハンドラーは、このメソッドの一部として、要求とスキームから必要なものは何でも初期化する必要があります。 (継承元 IAuthenticationHandler) |