IViewEngine.FindPartialView Method

Finds the specified partial view by using the specified controller context.

Namespace:  System.Web.Mvc
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)

Syntax

'Declaration
Function FindPartialView ( _
    controllerContext As ControllerContext, _
    partialViewName As String, _
    useCache As Boolean _
) As ViewEngineResult
ViewEngineResult FindPartialView(
    ControllerContext controllerContext,
    string partialViewName,
    bool useCache
)
ViewEngineResult^ FindPartialView(
    ControllerContext^ controllerContext, 
    String^ partialViewName, 
    bool useCache
)

Parameters

  • partialViewName
    Type: System.String
    The name of the partial view.
  • useCache
    Type: System.Boolean
    true to specify that the view engine returns the cached view, if a cached view exists; otherwise, false.

Return Value

Type: System.Web.Mvc.ViewEngineResult
The partial view.

See Also

Reference

IViewEngine Interface

System.Web.Mvc Namespace