SignOutResult 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
ActionResult 실행에서 를 호출하는 입니다HttpContext.SignOutAsync.
public ref class SignOutResult : Microsoft::AspNetCore::Mvc::ActionResult
public class SignOutResult : Microsoft.AspNetCore.Mvc.ActionResult
public class SignOutResult : Microsoft.AspNetCore.Mvc.ActionResult, Microsoft.AspNetCore.Http.IResult
type SignOutResult = class
inherit ActionResult
type SignOutResult = class
inherit ActionResult
interface IResult
Public Class SignOutResult
Inherits ActionResult
Public Class SignOutResult
Inherits ActionResult
Implements IResult
- 상속
- 구현
생성자
SignOutResult() |
기본 로그아웃 체계를 사용하여 의 SignOutResult 새 instance 초기화합니다. |
SignOutResult(AuthenticationProperties) |
기본 로그아웃 체계를 사용하여 의 SignOutResult 새 instance 초기화합니다.
지정된 인증 체계 및 입니다 |
SignOutResult(IList<String>) |
지정된 인증 체계를 사용하여 의 SignOutResult 새 instance 초기화합니다. |
SignOutResult(IList<String>, AuthenticationProperties) |
지정된 인증 체계 및 |
SignOutResult(IList<String>, AuthenticationProperties) |
지정된 인증 체계 및 |
SignOutResult(String) |
지정된 인증 체계를 사용하여 의 SignOutResult 새 instance 초기화합니다. |
SignOutResult(String, AuthenticationProperties) |
지정된 인증 체계 및 를 사용하여 의 SignOutResult 새 instance 초기화합니다 |
SignOutResult(String, AuthenticationProperties) |
지정된 인증 체계 및 를 사용하여 의 SignOutResult 새 instance 초기화합니다 |
속성
AuthenticationSchemes |
문제가 발생하는 인증 체계를 가져오거나 설정합니다. |
Properties |
로그아웃 작업을 수행하는 데 사용되는 를 가져오거나 설정합니다 AuthenticationProperties . |
메서드
ExecuteResult(ActionContext) |
작업 메서드의 결과 작업을 동기적으로 실행합니다. 이 메서드는 MVC에서 작업 메서드의 결과를 처리하기 위해 호출됩니다. (다음에서 상속됨 ActionResult) |
ExecuteResultAsync(ActionContext) |
작업 메서드의 결과 작업을 비동기적으로 실행합니다. 이 메서드는 MVC에서 작업 메서드의 결과를 처리하기 위해 호출됩니다. 이 메서드의 기본 구현은 메서드를 ExecuteResult(ActionContext) 호출하고 완료된 작업을 반환합니다. |
명시적 인터페이스 구현
IResult.ExecuteAsync(HttpContext) |
결과를 반영하는 HTTP 응답을 작성합니다. |