ViewResult 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
뷰를 ActionResult 응답에 렌더링하는 을 나타냅니다.
public ref class ViewResult : Microsoft::AspNetCore::Mvc::ActionResult
public ref class ViewResult : Microsoft::AspNetCore::Mvc::ActionResult, Microsoft::AspNetCore::Mvc::IActionResult, Microsoft::AspNetCore::Mvc::Infrastructure::IStatusCodeActionResult
public class ViewResult : Microsoft.AspNetCore.Mvc.ActionResult
public class ViewResult : Microsoft.AspNetCore.Mvc.ActionResult, Microsoft.AspNetCore.Mvc.IActionResult, Microsoft.AspNetCore.Mvc.Infrastructure.IStatusCodeActionResult
type ViewResult = class
inherit ActionResult
type ViewResult = class
inherit ActionResult
interface IStatusCodeActionResult
interface IActionResult
type ViewResult = class
inherit ActionResult
interface IActionResult
interface IStatusCodeActionResult
Public Class ViewResult
Inherits ActionResult
Public Class ViewResult
Inherits ActionResult
Implements IActionResult, IStatusCodeActionResult
- 상속
- 구현
생성자
ViewResult() |
뷰를 ActionResult 응답에 렌더링하는 을 나타냅니다. |
속성
ContentType |
응답에 대한 Content-Type 헤더를 가져오거나 설정합니다. |
Model |
뷰 데이터 모델을 가져옵니다. |
StatusCode |
HTTP 상태 코드를 가져오거나 설정합니다. |
TempData |
이 결과에 대한 를 ITempDataDictionary 가져오거나 설정합니다. |
ViewData |
이 결과에 대한 를 ViewDataDictionary 가져오거나 설정합니다. |
ViewEngine |
뷰를 찾는 데 사용되는 를 IViewEngine 가져오거나 설정합니다. |
ViewName |
응답에 렌더링되는 뷰의 이름 또는 경로를 가져오거나 설정합니다. |
메서드
ExecuteResult(ActionContext) |
작업 메서드의 결과 작업을 동기적으로 실행합니다. MVC에서 이 메서드를 호출하여 작업 메서드의 결과를 처리합니다. (다음에서 상속됨 ActionResult) |
ExecuteResultAsync(ActionContext) |
동작 메서드의 결과 작업을 비동기적으로 실행합니다. MVC에서 이 메서드를 호출하여 작업 메서드의 결과를 처리합니다. |