ActionMethodSelectorAttribute.IsValidForRequest Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
.