Controller.View Method (IView, Object)

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 Overridable Function View ( _
    view As IView, _
    model As Object _
) As ViewResult
protected internal virtual ViewResult View(
    IView view,
    Object model
)
protected public:
virtual ViewResult^ View(
    IView^ view, 
    Object^ model
)

Parameters

  • model
    Type: System.Object
    The model that is rendered by the view.

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.

See Also

Reference

Controller Class

View Overload

System.Web.Mvc Namespace