HttpActionBinding.ActionDescriptor Property

Gets or sets the back pointer to the action this binding is for.

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

Syntax

'Declaration
Public Property ActionDescriptor As HttpActionDescriptor 
    Get 
    Set
'Usage
Dim instance As HttpActionBinding 
Dim value As HttpActionDescriptor 

value = instance.ActionDescriptor

instance.ActionDescriptor = value
public HttpActionDescriptor ActionDescriptor { get; set; }
public:
property HttpActionDescriptor^ ActionDescriptor {
    HttpActionDescriptor^ get ();
    void set (HttpActionDescriptor^ value);
}
member ActionDescriptor : HttpActionDescriptor with get, set
function get ActionDescriptor () : HttpActionDescriptor 
function set ActionDescriptor (value : HttpActionDescriptor)

Property Value

Type: System.Web.Http.Controllers.HttpActionDescriptor
The back pointer to the action this binding is for.

Remarks

This can also provide the Type[], string[] names for the parameters.

See Also

Reference

HttpActionBinding Class

System.Web.Http.Controllers Namespace