SessionMethodAttributeOnActionExecutionAsync - метод
Called asynchronously before the action, after model binding is complete.
Пространство имён: Tessa.WebСборка: Tessa.Web (в Tessa.Web.dll) Версия: 4.0.4
public Task OnActionExecutionAsync(
ActionExecutingContext context,
ActionExecutionDelegate next
)
Public Function OnActionExecutionAsync (
context As ActionExecutingContext,
next As ActionExecutionDelegate
) As Task
public:
virtual Task^ OnActionExecutionAsync(
ActionExecutingContext^ context,
ActionExecutionDelegate^ next
) sealed
abstract OnActionExecutionAsync :
context : ActionExecutingContext *
next : ActionExecutionDelegate -> Task
override OnActionExecutionAsync :
context : ActionExecutingContext *
next : ActionExecutionDelegate -> Task
- context ActionExecutingContext
- The ActionExecutingContext.
- next ActionExecutionDelegate
-
The ActionExecutionDelegate. Invoked to execute the next action filter or the action itself.
TaskA
Task that on completion indicates the filter has executed.
IAsyncActionFilterOnActionExecutionAsync(ActionExecutingContext, ActionExecutionDelegate)