ViewResultBase Class
Visual Studio 2010
Represents a base class that is used to provide the model to the view and then render the view to the response.
System.Object
System.Web.Mvc.ActionResult
System.Web.Mvc.ViewResultBase
System.Web.Mvc.PartialViewResult
System.Web.Mvc.ViewResult
System.Web.Mvc.ActionResult
System.Web.Mvc.ViewResultBase
System.Web.Mvc.PartialViewResult
System.Web.Mvc.ViewResult
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
The ViewResultBase type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | TempData | Gets or sets the TempDataDictionary object for this result. |
![]() | View | Gets or sets the IView object that is rendered to the response. |
![]() | ViewData | Gets or sets the view data ViewDataDictionary object for this result. |
![]() | ViewEngineCollection | Gets or sets the collection of view engines that are associated with this result. |
![]() | ViewName | Gets or sets the name of the view to render. |
| Name | Description | |
|---|---|---|
![]() | Equals | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | ExecuteResult | When called by the action invoker, renders the view to the response. (Overrides ActionResult.ExecuteResult(ControllerContext).) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | FindView | Returns the ViewEngineResult object that is used to render the view. |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
The ViewResultBase class is the abstract base class for both the ViewResult and PartialViewResult classes. The class contains methods for finding the view to be rendered and for executing the result. This class also contains properties that identify the view to be rendered, the name of the view, view data, temporary data, and a collection for view engines for the application.
Community Additions
ADD
Show:


