Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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
public override bool IsValidForRequest(
ControllerContext controllerContext,
MethodInfo methodInfo
)
public:
virtual bool IsValidForRequest(
ControllerContext^ controllerContext,
MethodInfo^ methodInfo
) override
override IsValidForRequest :
controllerContext:ControllerContext *
methodInfo:MethodInfo -> bool
Public Overrides Function IsValidForRequest (
controllerContext As ControllerContext,
methodInfo As MethodInfo
) As Boolean
Parameters
controllerContext
Type: System.Web.Mvc.ControllerContextThe controller context.
methodInfo
Type: System.Reflection.MethodInfoThe 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. |
See Also
AcceptVerbsAttribute Class
System.Web.Mvc Namespace
Return to top