DefaultActionValueBinder.GetBinding Method (HttpActionDescriptor)

 

Default implementation of the IActionValueBinder interface. This interface is the primary entry point for binding action parameters.

Namespace:   System.Web.Http.ModelBinding
Assembly:  System.Web.Http (in System.Web.Http.dll)

Syntax

public virtual HttpActionBinding GetBinding(
    HttpActionDescriptor actionDescriptor
)
public:
virtual HttpActionBinding^ GetBinding(
    HttpActionDescriptor^ actionDescriptor
)
abstract GetBinding : 
        actionDescriptor:HttpActionDescriptor -> HttpActionBinding
override GetBinding : 
        actionDescriptor:HttpActionDescriptor -> HttpActionBinding
Public Overridable Function GetBinding (
    actionDescriptor As HttpActionDescriptor
) As HttpActionBinding

Parameters

Return Value

Type: System.Web.Http.Controllers.HttpActionBinding

The HttpActionBinding associated with the DefaultActionValueBinder.

Implements

IActionValueBinder.GetBinding(HttpActionDescriptor)

See Also

DefaultActionValueBinder Class
System.Web.Http.ModelBinding Namespace

Return to top