IViewEngine.FindPartialView(ControllerContext, String, Boolean) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Finds the specified partial view by using the specified controller context.
public System.Web.Mvc.ViewEngineResult FindPartialView (System.Web.Mvc.ControllerContext controllerContext, string partialViewName, bool useCache);
abstract member FindPartialView : System.Web.Mvc.ControllerContext * string * bool -> System.Web.Mvc.ViewEngineResult
Public Function FindPartialView (controllerContext As ControllerContext, partialViewName As String, useCache As Boolean) As ViewEngineResult
Parameters
- controllerContext
- ControllerContext
The controller context.
- partialViewName
- String
The name of the partial view.
- useCache
- Boolean
true to specify that the view engine returns the cached view, if a cached view exists; otherwise, false.
Returns
The partial view.