Controller.View Method (IView)
Creates a ViewResult object that renders the specified IView object.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
Syntax
'Declaration
Protected Friend Function View ( _
view As IView _
) As ViewResult
protected internal ViewResult View(
IView view
)
protected public:
ViewResult^ View(
IView^ view
)
Parameters
- view
Type: System.Web.Mvc.IView
The view that is rendered to the response.
Return Value
Type: System.Web.Mvc.ViewResult
The view result.
Remarks
The result object that is prepared by this method is written to the response by the MVC framework when the object is executed.