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) 方法并返回已完成的任务。 |