ActionExecutionDelegate Delegate

Definition

A delegate that asynchronously returns an ActionExecutedContext indicating the action or the next action filter has executed.

public delegate System::Threading::Tasks::Task<Microsoft::AspNetCore::Mvc::Filters::ActionExecutedContext ^> ^ ActionExecutionDelegate();
public delegate System.Threading.Tasks.Task<Microsoft.AspNetCore.Mvc.Filters.ActionExecutedContext> ActionExecutionDelegate();
type ActionExecutionDelegate = delegate of unit -> Task<ActionExecutedContext>
Public Delegate Function ActionExecutionDelegate() As Task(Of ActionExecutedContext) 

Return Value

A Task that on completion returns an ActionExecutedContext.

Applies to