VirtualPathProviderViewEngine.FindView Method
Finds the specified view by using the specified controller context and master view name.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
'Declaration Public Overridable Function FindView ( _ controllerContext As ControllerContext, _ viewName As String, _ masterName As String, _ useCache As Boolean _ ) As ViewEngineResult 'Usage Dim instance As VirtualPathProviderViewEngine 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 view.
- useCache
- Type: System.Boolean
true to use the cached view.
Implements
IViewEngine.FindView(ControllerContext, String, String, Boolean)| Exception | Condition |
|---|---|
| ArgumentNullException | The controllerContext parameter is Nothing (Nothing in Visual Basic). |
| ArgumentException | The viewName parameter is Nothing or empty. |
Show: