ActionMethodSelectorAttribute.IsValidForRequest Method

Definition

Determines whether the action selection is valid for the specified route context.

public:
 abstract bool IsValidForRequest(Microsoft::AspNetCore::Routing::RouteContext ^ routeContext, Microsoft::AspNetCore::Mvc::Abstractions::ActionDescriptor ^ action);
public abstract bool IsValidForRequest (Microsoft.AspNetCore.Routing.RouteContext routeContext, Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor action);
abstract member IsValidForRequest : Microsoft.AspNetCore.Routing.RouteContext * Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor -> bool
Public MustOverride Function IsValidForRequest (routeContext As RouteContext, action As ActionDescriptor) As Boolean

Parameters

routeContext
RouteContext

The route context.

action
ActionDescriptor

Information about the action.

Returns

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

Applies to