Binds the model to a value by using the specified controller context, binding context, and model binders.
Namespace:  System.Web.Http.Controllers
Assembly:  System.Web.Http (in System.Web.Http.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function Bind ( _
    actionContext As HttpActionContext, _
    bindingContext As ModelBindingContext, _
    binders As IEnumerable(Of IModelBinder) _
) As Boolean
'Usage
Dim actionContext As HttpActionContext 
Dim bindingContext As ModelBindingContext 
Dim binders As IEnumerable(Of IModelBinder)
Dim returnValue As Boolean 
returnValue = actionContext.Bind(bindingContext, _
    binders)
public static bool Bind(
    this HttpActionContext actionContext,
    ModelBindingContext bindingContext,
    IEnumerable<IModelBinder> binders
)
[ExtensionAttribute]
public:
static bool Bind(
    HttpActionContext^ actionContext, 
    ModelBindingContext^ bindingContext, 
    IEnumerable<IModelBinder^>^ binders
)
static member Bind : 
        actionContext:HttpActionContext * 
        bindingContext:ModelBindingContext * 
        binders:IEnumerable<IModelBinder> -> bool
public static function Bind(
    actionContext : HttpActionContext, 
    bindingContext : ModelBindingContext, 
    binders : IEnumerable<IModelBinder>
) : boolean
Parameters
- actionContext 
 Type: System.Web.Http.Controllers.HttpActionContext- The execution context. 
- bindingContext 
 Type: System.Web.Http.ModelBinding.ModelBindingContext- The binding context. 
- binders 
 Type: System.Collections.Generic.IEnumerable<IModelBinder>- The collection of model binders. 
Return Value
Type: System.Boolean
true if the bind succeeded; otherwise, false.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type HttpActionContext. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=vs.108) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.108).