| File: EndpointFilterDelegate.cs | Web Access |
| Project: src\aspnetcore\src\Http\Http.Abstractions\src\Microsoft.AspNetCore.Http.Abstractions.csproj (Microsoft.AspNetCore.Http.Abstractions) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.AspNetCore.Http; /// <summary> /// A delegate that is applied as a filter on a route handler. /// </summary> /// <param name="context">The <see cref="EndpointFilterInvocationContext"/> associated with the current request.</param> /// <returns> /// A <see cref="ValueTask"/> result of calling the handler and applying any modifications made by filters in the pipeline. /// </returns> public delegate ValueTask<object?> EndpointFilterDelegate(EndpointFilterInvocationContext context);