SignInResult 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
執行 ActionResult 時叫用 的 HttpContext.SignInAsync 。
public ref class SignInResult : Microsoft::AspNetCore::Mvc::ActionResult
public class SignInResult : Microsoft.AspNetCore.Mvc.ActionResult
type SignInResult = class
inherit ActionResult
Public Class SignInResult
Inherits ActionResult
- 繼承
建構函式
SignInResult(ClaimsPrincipal) |
使用預設驗證配置,初始化 的新實例 SignInResult 。 |
SignInResult(ClaimsPrincipal, AuthenticationProperties) |
使用預設驗證配置和 |
SignInResult(String, ClaimsPrincipal) |
使用指定的驗證配置,初始化 的新實例 SignInResult 。 |
SignInResult(String, ClaimsPrincipal, AuthenticationProperties) |
使用指定的驗證配置和 |
SignInResult(String, ClaimsPrincipal, AuthenticationProperties) |
使用指定的驗證配置和 |
屬性
AuthenticationScheme |
取得或設定用來執行登入作業的驗證配置。 |
Principal |
取得或設定包含 ClaimsPrincipal 使用者宣告的 。 |
Properties |
取得或設定 AuthenticationProperties 用來執行登入作業的 。 |
方法
ExecuteResult(ActionContext) |
同步執行動作方法的結果作業。 MVC 會呼叫這個方法來處理動作方法的結果。 (繼承來源 ActionResult) |
ExecuteResultAsync(ActionContext) |
以非同步方式執行動作方法的結果作業。 MVC 會呼叫這個方法來處理動作方法的結果。 此方法的預設實作會呼叫 ExecuteResult(ActionContext) 方法,並傳回已完成的工作。 |