Share via


ActionMethodSelectorAttribute.IsValidForRequest Method (ControllerContext, MethodInfo)

 

Determines whether the action method selection is valid for the specified controller context.

Namespace:   System.Web.Mvc
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)

Syntax

public abstract bool IsValidForRequest(
    ControllerContext controllerContext,
    MethodInfo methodInfo
)
public:
virtual bool IsValidForRequest(
    ControllerContext^ controllerContext,
    MethodInfo^ methodInfo
) abstract
abstract IsValidForRequest : 
        controllerContext:ControllerContext *
        methodInfo:MethodInfo -> bool
Public MustOverride Function IsValidForRequest (
    controllerContext As ControllerContext,
    methodInfo As MethodInfo
) As Boolean

Parameters

Return Value

Type: System.Boolean

true if the action method selection is valid for the specified controller context; otherwise, false.

See Also

ActionMethodSelectorAttribute Class
System.Web.Mvc Namespace

Return to top