IAuthenticationRequestHandler インターフェイス

定義

ハンドラーが要求処理に参加するかどうかを判断するために使用されます。

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 のミドルウェアやミドルウェアを呼び出さない認証ミドルウェアでサポートされています true

InitializeAsync(AuthenticationScheme, HttpContext)

認証ハンドラーを初期化します。 ハンドラーは、このメソッドの一部として、要求とスキームから必要なものは何でも初期化する必要があります。

(継承元 IAuthenticationHandler)

適用対象