HttpActionContextExtensions.Bind Method (HttpActionContext, ModelBindingContext)
Binds the model to a value by using the specified controller context and binding context.
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 _
) As Boolean
'Usage
Dim actionContext As HttpActionContext
Dim bindingContext As ModelBindingContext
Dim returnValue As Boolean
returnValue = actionContext.Bind(bindingContext)
public static bool Bind(
this HttpActionContext actionContext,
ModelBindingContext bindingContext
)
[ExtensionAttribute]
public:
static bool Bind(
HttpActionContext^ actionContext,
ModelBindingContext^ bindingContext
)
static member Bind :
actionContext:HttpActionContext *
bindingContext:ModelBindingContext -> bool
public static function Bind(
actionContext : HttpActionContext,
bindingContext : ModelBindingContext
) : boolean
Parameters
actionContext
Type: System.Web.Http.Controllers.HttpActionContextThe execution context.
bindingContext
Type: System.Web.Http.ModelBinding.ModelBindingContextThe binding context.
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).