IHttpActionSelector Interface
Contains the logic for selecting an action method.
Namespace: System.Web.Http.Controllers
Assembly: System.Web.Http (in System.Web.Http.dll)
Syntax
'Declaration
Public Interface IHttpActionSelector
'Usage
Dim instance As IHttpActionSelector
public interface IHttpActionSelector
public interface class IHttpActionSelector
type IHttpActionSelector = interface end
public interface IHttpActionSelector
The IHttpActionSelector type exposes the following members.
Methods
Name | Description | |
---|---|---|
GetActionMapping | Returns a map, keyed by action string, of all HttpActionDescriptor that the selector can select. This is primarily called by IApiExplorer to discover all the possible actions in the controller. | |
SelectAction | Selects the action for the controller. |
Top