HttpConfiguration.ParameterBindingRules Property

 

Gets the collection of rules for how parameters should be bound.

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

Syntax

public ParameterBindingRulesCollection ParameterBindingRules {
    [CompilerGeneratedAttribute]
    get;
    [CompilerGeneratedAttribute]
    internal set;
}
public:
property ParameterBindingRulesCollection^ ParameterBindingRules {
    [CompilerGeneratedAttribute]
    ParameterBindingRulesCollection^ get();
    [CompilerGeneratedAttribute]
    internal: void set(ParameterBindingRulesCollection^ value);
}
member ParameterBindingRules : ParameterBindingRulesCollection with get, internal set
Public Property ParameterBindingRules As ParameterBindingRulesCollection
    Get
    Friend Set
End Property

Property Value

Type: System.Web.Http.ModelBinding.ParameterBindingRulesCollection

A collection of functions that can produce a parameter binding for a given parameter.

See Also

HttpConfiguration Class
System.Web.Http Namespace

Return to top