EndpointFilterDelegate Delegate

Definition

A delegate that is applied as a filter on a route handler.

public delegate System.Threading.Tasks.ValueTask<object?> EndpointFilterDelegate(EndpointFilterInvocationContext context);
type EndpointFilterDelegate = delegate of EndpointFilterInvocationContext -> ValueTask<obj>
Public Delegate Function EndpointFilterDelegate(context As EndpointFilterInvocationContext) As ValueTask(Of Object) 

Parameters

context
EndpointFilterInvocationContext

The EndpointFilterInvocationContext associated with the current request.

Return Value

A ValueTask result of calling the handler and applying any modifications made by filters in the pipeline.

Applies to