AccountController クラス

定義

アカウントを管理するために Web アプリで使用されるコントローラー。

[Microsoft.AspNetCore.Authorization.AllowAnonymous]
[Microsoft.AspNetCore.Mvc.Area("MicrosoftIdentity")]
[Microsoft.AspNetCore.Mvc.NonController]
[Microsoft.AspNetCore.Mvc.Route("[area]/[controller]/[action]")]
public class AccountController : Microsoft.AspNetCore.Mvc.Controller
[<Microsoft.AspNetCore.Authorization.AllowAnonymous>]
[<Microsoft.AspNetCore.Mvc.Area("MicrosoftIdentity")>]
[<Microsoft.AspNetCore.Mvc.NonController>]
[<Microsoft.AspNetCore.Mvc.Route("[area]/[controller]/[action]")>]
type AccountController = class
    inherit Controller
Public Class AccountController
Inherits Controller
継承
AccountController
属性

コンストラクター

名前 説明
AccountController(IOptionsMonitor<MicrosoftIdentityOptions>)

MicrosoftIdentityOptionsからのAccountControllerのコンストラクター。このコンストラクターは、依存関係の挿入で使用されます。

メソッド

名前 説明
Challenge(String, String, String, String, String, String, String)

ユーザーにチャレンジします。

EditProfile(String)

B2C アプリケーションでは、プロファイルの編集ポリシーを処理します。

ResetPassword(String)

B2C アプリケーションでは、パスワードリセット ポリシーが処理されます。

SignIn(String, String, String, String)

ユーザーのサインインを処理します。

SignOut(String)

ユーザーのサインアウトを処理します。

適用対象