SignInResult 클래스

정의

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

생성자

SignInResult(ClaimsPrincipal)

기본 인증 체계를 사용하여 의 SignInResult 새 instance 초기화합니다.

SignInResult(ClaimsPrincipal, AuthenticationProperties)

기본 인증 체계 및 를 사용하여 의 SignInResult 새 instance 초기화합니다properties.

SignInResult(String, ClaimsPrincipal)

지정된 인증 체계를 사용하여 의 SignInResult 새 instance 초기화합니다.

SignInResult(String, ClaimsPrincipal, AuthenticationProperties)

지정된 인증 체계 및 를 사용하여 의 SignInResult 새 instance 초기화합니다properties.

SignInResult(String, ClaimsPrincipal, AuthenticationProperties)

지정된 인증 체계 및 를 사용하여 의 SignInResult 새 instance 초기화합니다properties.

속성

AuthenticationScheme

로그인 작업을 수행하는 데 사용되는 인증 체계를 가져오거나 설정합니다.

Principal

사용자 클레임을 ClaimsPrincipal 포함하는 을 가져오거나 설정합니다.

Properties

로그인 작업을 수행하는 데 사용되는 를 가져오거나 설정합니다 AuthenticationProperties .

메서드

ExecuteResult(ActionContext)

작업 메서드의 결과 작업을 동기적으로 실행합니다. 이 메서드는 MVC에서 작업 메서드의 결과를 처리하기 위해 호출됩니다.

(다음에서 상속됨 ActionResult)
ExecuteResultAsync(ActionContext)

작업 메서드의 결과 작업을 비동기적으로 실행합니다. 이 메서드는 MVC에서 작업 메서드의 결과를 처리하기 위해 호출됩니다. 이 메서드의 기본 구현은 메서드를 ExecuteResult(ActionContext) 호출하고 완료된 작업을 반환합니다.

적용 대상