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