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 새 instance 초기화합니다. |
SignInResult(ClaimsPrincipal, AuthenticationProperties) |
기본 인증 체계 및 를 사용하여 의 SignInResult 새 instance 초기화합니다 |
SignInResult(String, ClaimsPrincipal) |
지정된 인증 체계를 사용하여 의 SignInResult 새 instance 초기화합니다. |
SignInResult(String, ClaimsPrincipal, AuthenticationProperties) |
지정된 인증 체계 및 를 사용하여 의 SignInResult 새 instance 초기화합니다 |
SignInResult(String, ClaimsPrincipal, AuthenticationProperties) |
지정된 인증 체계 및 를 사용하여 의 SignInResult 새 instance 초기화합니다 |
속성
AuthenticationScheme |
로그인 작업을 수행하는 데 사용되는 인증 체계를 가져오거나 설정합니다. |
Principal |
사용자 클레임을 ClaimsPrincipal 포함하는 을 가져오거나 설정합니다. |
Properties |
로그인 작업을 수행하는 데 사용되는 를 가져오거나 설정합니다 AuthenticationProperties . |
메서드
ExecuteResult(ActionContext) |
작업 메서드의 결과 작업을 동기적으로 실행합니다. 이 메서드는 MVC에서 작업 메서드의 결과를 처리하기 위해 호출됩니다. (다음에서 상속됨 ActionResult) |
ExecuteResultAsync(ActionContext) |
작업 메서드의 결과 작업을 비동기적으로 실행합니다. 이 메서드는 MVC에서 작업 메서드의 결과를 처리하기 위해 호출됩니다. 이 메서드의 기본 구현은 메서드를 ExecuteResult(ActionContext) 호출하고 완료된 작업을 반환합니다. |