File: Filters\IAsyncResourceFilter.cs
Web Access
Project: src\src\Mvc\Mvc.Abstractions\src\Microsoft.AspNetCore.Mvc.Abstractions.csproj (Microsoft.AspNetCore.Mvc.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.Mvc.Filters;
 
/// <summary>
/// A filter that asynchronously surrounds execution of model binding, the action (and filters) and the action
/// result (and filters).
/// </summary>
public interface IAsyncResourceFilter : IFilterMetadata
{
    /// <summary>
    /// Called asynchronously before the rest of the pipeline.
    /// </summary>
    /// <param name="context">The <see cref="ResourceExecutingContext"/>.</param>
    /// <param name="next">
    /// The <see cref="ResourceExecutionDelegate"/>. Invoked to execute the next resource filter or the remainder
    /// of the pipeline.
    /// </param>
    /// <returns>
    /// A <see cref="Task"/> which will complete when the remainder of the pipeline completes.
    /// </returns>
    Task OnResourceExecutionAsync(
        ResourceExecutingContext context,
        ResourceExecutionDelegate next);
}