VirtualPathProviderViewEngine.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)

'Declaration
Public Overridable Function FindPartialView ( _
	controllerContext As ControllerContext, _
	partialViewName As String, _
	useCache As Boolean _
) As ViewEngineResult
'Usage
Dim instance As VirtualPathProviderViewEngine 
Dim controllerContext As ControllerContext 
Dim partialViewName As String 
Dim useCache As Boolean 
Dim returnValue As ViewEngineResult 

returnValue = instance.FindPartialView(controllerContext, _
	partialViewName, useCache)

Parameters

controllerContext
Type: System.Web.Mvc.ControllerContext

The controller context.

partialViewName
Type: System.String

The name of the partial view.

useCache
Type: System.Boolean

true to use the cached partial view.

Return Value

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

Implements

IViewEngine.FindPartialView(ControllerContext, String, Boolean)

ExceptionCondition
ArgumentNullException

The controllerContext parameter is Nothing (Nothing in Visual Basic).

ArgumentException

The partialViewName parameter is Nothing or empty.

Show: