HttpActionBinding.ExecuteBindingAsync Method (HttpActionContext, CancellationToken)

 

Executes asynchronously the binding for the given request context.

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

Syntax

public virtual Task ExecuteBindingAsync(
    HttpActionContext actionContext,
    CancellationToken cancellationToken
)
public:
virtual Task^ ExecuteBindingAsync(
    HttpActionContext^ actionContext,
    CancellationToken cancellationToken
)
abstract ExecuteBindingAsync : 
        actionContext:HttpActionContext *
        cancellationToken:CancellationToken -> Task
override ExecuteBindingAsync : 
        actionContext:HttpActionContext *
        cancellationToken:CancellationToken -> Task
Public Overridable Function ExecuteBindingAsync (
    actionContext As HttpActionContext,
    cancellationToken As CancellationToken
) As Task

Parameters

Return Value

Type: System.Threading.Tasks.Task

Task that is signaled when the binding is complete.

See Also

HttpActionBinding Class
System.Web.Http.Controllers Namespace

Return to top