次の方法で共有


HttpActionBinding.ParameterBindings Property

Gets or sets the synchronous bindings for each parameter.

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

Syntax

'Declaration
Public Property ParameterBindings As HttpParameterBinding()
    Get 
    Set
'Usage
Dim instance As HttpActionBinding 
Dim value As HttpParameterBinding()

value = instance.ParameterBindings

instance.ParameterBindings = value
public HttpParameterBinding[] ParameterBindings { get; set; }
public:
property array<HttpParameterBinding^>^ ParameterBindings {
    array<HttpParameterBinding^>^ get ();
    void set (array<HttpParameterBinding^>^ value);
}
member ParameterBindings : HttpParameterBinding[] with get, set
function get ParameterBindings () : HttpParameterBinding[]
function set ParameterBindings (value : HttpParameterBinding[])

Property Value

Type: System.Web.Http.Controllers.HttpParameterBinding[]
The synchronous bindings for each parameter.

Remarks

This is a parallel array to the ActionDescriptor's parameter array.

See Also

Reference

HttpActionBinding Class

System.Web.Http.Controllers Namespace