Anteckning
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Determines whether the specified method information is valid for the specified controller context.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
Syntax
'Declaration
Public Overrides Function IsValidForRequest ( _
controllerContext As ControllerContext, _
methodInfo As MethodInfo _
) As Boolean
public override bool IsValidForRequest(
ControllerContext controllerContext,
MethodInfo methodInfo
)
public:
virtual bool IsValidForRequest(
ControllerContext^ controllerContext,
MethodInfo^ methodInfo
) override
Parameters
- controllerContext
Type: System.Web.Mvc.ControllerContext
The controller context.
- methodInfo
Type: System.Reflection.MethodInfo
The method information.
Return Value
Type: System.Boolean
true if the method information is valid; otherwise, false.
Exceptions
| Exception | Condition |
|---|---|
| ArgumentNullException | The controllerContext parameter is null reference (Nothing in Visual Basic). |