IViewEngine.FindView Method
Finds the specified view by using the specified controller context.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
'Declaration Function FindView ( _ controllerContext As ControllerContext, _ viewName As String, _ masterName As String, _ useCache As Boolean _ ) As ViewEngineResult 'Usage Dim instance As IViewEngine Dim controllerContext As ControllerContext Dim viewName As String Dim masterName As String Dim useCache As Boolean Dim returnValue As ViewEngineResult returnValue = instance.FindView(controllerContext, _ viewName, masterName, useCache)
Parameters
- controllerContext
- Type: System.Web.Mvc.ControllerContext
The controller context.
- viewName
- Type: System.String
The name of the view.
- masterName
- Type: System.String
The name of the master.
- useCache
- Type: System.Boolean
true to specify that the view engine returns the cached view, if a cached view exists; otherwise, false.
Show: