Catatan
Akses ke halaman ini memerlukan otorisasi. Anda dapat mencoba masuk atau mengubah direktori.
Akses ke halaman ini memerlukan otorisasi. Anda dapat mencoba mengubah direktori.
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
Public Overridable Function FindPartialView ( _
controllerContext As ControllerContext, _
partialViewName As String _
) As ViewEngineResult
public virtual ViewEngineResult FindPartialView(
ControllerContext controllerContext,
string partialViewName
)
public:
virtual ViewEngineResult^ FindPartialView(
ControllerContext^ controllerContext,
String^ partialViewName
)
Parameters
- controllerContext
Type: System.Web.Mvc.ControllerContext
The controller context.
- partialViewName
Type: System.String
The name of the partial view.
Return Value
Type: System.Web.Mvc.ViewEngineResult
The partial view.
Exceptions
| Exception | Condition |
|---|---|
| ArgumentNullException | The controllerContext parameter is null reference (Nothing in Visual Basic). |
| ArgumentException | The partialViewName parameter is null reference (Nothing in Visual Basic) or empty. |