IAsyncResourceFilter.OnResourceExecutionAsync Method

Definition

Called asynchronously before the rest of the pipeline.

public:
 System::Threading::Tasks::Task ^ OnResourceExecutionAsync(Microsoft::AspNetCore::Mvc::Filters::ResourceExecutingContext ^ context, Microsoft::AspNetCore::Mvc::Filters::ResourceExecutionDelegate ^ next);
public System.Threading.Tasks.Task OnResourceExecutionAsync (Microsoft.AspNetCore.Mvc.Filters.ResourceExecutingContext context, Microsoft.AspNetCore.Mvc.Filters.ResourceExecutionDelegate next);
abstract member OnResourceExecutionAsync : Microsoft.AspNetCore.Mvc.Filters.ResourceExecutingContext * Microsoft.AspNetCore.Mvc.Filters.ResourceExecutionDelegate -> System.Threading.Tasks.Task
Public Function OnResourceExecutionAsync (context As ResourceExecutingContext, next As ResourceExecutionDelegate) As Task

Parameters

next
ResourceExecutionDelegate

The ResourceExecutionDelegate. Invoked to execute the next resource filter or the remainder of the pipeline.

Returns

A Task which will complete when the remainder of the pipeline completes.

Applies to