IAutofacContinuationActionFilterExecuteActionFilterAsync Method |
The method called when the filter executes. The filter should call 'next' to
continue processing the request.
Namespace:
Autofac.Integration.WebApi
Assembly:
Autofac.Integration.WebApi (in Autofac.Integration.WebApi.dll) Version: 6.0.0+03bf347ff3a78c2557675254b1a417eef4b464ec
Syntax Task<HttpResponseMessage> ExecuteActionFilterAsync(
HttpActionContext actionContext,
CancellationToken cancellationToken,
Func<Task<HttpResponseMessage>> next
)
Function ExecuteActionFilterAsync (
actionContext As HttpActionContext,
cancellationToken As CancellationToken,
next As Func(Of Task(Of HttpResponseMessage))
) As Task(Of HttpResponseMessage)
Parameters
- actionContext
- Type: HttpActionContext
The context of the current action. - cancellationToken
- Type: System.ThreadingCancellationToken
A cancellation token for the request. - next
- Type: SystemFuncTaskHttpResponseMessage
The function to call that invokes the next filter in the chain.
Return Value
Type:
TaskHttpResponseMessage[Missing <returns> documentation for "M:Autofac.Integration.WebApi.IAutofacContinuationActionFilter.ExecuteActionFilterAsync(System.Web.Http.Controllers.HttpActionContext,System.Threading.CancellationToken,System.Func{System.Threading.Tasks.Task{System.Net.Http.HttpResponseMessage}})"]
See Also