ViewResult Class
Represents a class that is used to render a view by using an IView instance that is returned by an IViewEngine object.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
The ViewResult type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | MasterName | Gets the name of the master view (such as a master page or template) to use when the view is rendered. |
![]() | Model | Gets the view data model. (Inherited from ViewResultBase.) |
![]() | TempData | Gets or sets the TempDataDictionary object for this result. (Inherited from ViewResultBase.) |
![]() | View | Gets or sets the IView object that is rendered to the response. (Inherited from ViewResultBase.) |
![]() | ViewBag | Gets the view bag. (Inherited from ViewResultBase.) |
![]() | ViewData | Gets or sets the view data ViewDataDictionary object for this result. (Inherited from ViewResultBase.) |
![]() | ViewEngineCollection | Gets or sets the collection of view engines that are associated with this result. (Inherited from ViewResultBase.) |
![]() | ViewName | Gets or sets the name of the view to render. (Inherited from ViewResultBase.) |
| Name | Description | |
|---|---|---|
![]() | Equals | (Inherited from Object.) |
![]() | ExecuteResult | When called by the action invoker, renders the view to the response. (Inherited from ViewResultBase.) |
![]() | Finalize | (Inherited from Object.) |
![]() | FindView | Searches the registered view engines and returns the object that is used to render the view. (Overrides ViewResultBase.FindView(ControllerContext).) |
![]() | GetHashCode | (Inherited from Object.) |
![]() | GetType | (Inherited from Object.) |
![]() | MemberwiseClone | (Inherited from Object.) |
![]() | ToString | (Inherited from Object.) |
An action result represents a command that ASP.NET performs on behalf of an action method. The ViewResult class implements the abstract ViewResultBase class and is used to render a view. This class contains methods for finding the view to render and for executing the result. This class also contains properties that identify the view to render, the name of the view, the name of the master view, view data, temporary data, and a collection for view engines for the application.
If you want an action method to result in a rendered view, the action method should return a call to the controller's View helper method. The View helper method passes a ViewResult object to the ASP.NET MVC framework, which calls the object's ExecuteResult method.


