ViewResult Class 
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents an ActionResult that renders a view to the response.
public ref class ViewResult : Microsoft::AspNetCore::Mvc::ActionResultpublic ref class ViewResult : Microsoft::AspNetCore::Mvc::ActionResult, Microsoft::AspNetCore::Mvc::IActionResult, Microsoft::AspNetCore::Mvc::Infrastructure::IStatusCodeActionResultpublic class ViewResult : Microsoft.AspNetCore.Mvc.ActionResultpublic class ViewResult : Microsoft.AspNetCore.Mvc.ActionResult, Microsoft.AspNetCore.Mvc.IActionResult, Microsoft.AspNetCore.Mvc.Infrastructure.IStatusCodeActionResulttype ViewResult = class
    inherit ActionResulttype ViewResult = class
    inherit ActionResult
    interface IStatusCodeActionResult
    interface IActionResulttype ViewResult = class
    inherit ActionResult
    interface IActionResult
    interface IStatusCodeActionResultPublic Class ViewResult
Inherits ActionResultPublic Class ViewResult
Inherits ActionResult
Implements IActionResult, IStatusCodeActionResult- Inheritance
- Implements
Constructors
| ViewResult() | 
Properties
| ContentType | Gets or sets the Content-Type header for the response. | 
| Model | Gets the view data model. | 
| StatusCode | Gets or sets the HTTP status code. | 
| TempData | Gets or sets the ITempDataDictionary for this result. | 
| ViewData | Gets or sets the ViewDataDictionary for this result. | 
| ViewEngine | Gets or sets the IViewEngine used to locate views. | 
| ViewName | Gets or sets the name or path of the view that is rendered to the response. | 
Methods
| ExecuteResult(ActionContext) | Executes the result operation of the action method synchronously. This method is called by MVC to process the result of an action method.(Inherited from ActionResult) | 
| ExecuteResultAsync(ActionContext) | Executes the result operation of the action method asynchronously. This method is called by MVC to process the result of an action method. |