3 implementations of IAlwaysRunResultFilter
BasicWebSite (2)
Filters\RedirectAntiforgeryValidationFailedResultFilter.cs (1)
10public class RedirectAntiforgeryValidationFailedResultFilter : IAlwaysRunResultFilter
Filters\UnprocessableResultFilter.cs (1)
9public class UnprocessableResultFilter : Attribute, IAlwaysRunResultFilter
Microsoft.AspNetCore.Mvc.Core (1)
Infrastructure\ClientErrorResultFilter.cs (1)
9internal sealed partial class ClientErrorResultFilter : IAlwaysRunResultFilter, IOrderedFilter
10 references to IAlwaysRunResultFilter
Microsoft.AspNetCore.Mvc.Abstractions (3)
Filters\IAlwaysRunResultFilter.cs (1)
11/// The <see cref="IAlwaysRunResultFilter"/> interface declares an <see cref="IResultFilter"/> implementation
Filters\IAsyncResultFilter.cs (1)
22/// either the <see cref="IAlwaysRunResultFilter"/> or the <see cref="IAsyncAlwaysRunResultFilter"/> interface.
Filters\IResultFilter.cs (1)
22/// either the <see cref="IAlwaysRunResultFilter"/> or the <see cref="IAsyncAlwaysRunResultFilter"/> interface.
Microsoft.AspNetCore.Mvc.Core (3)
Infrastructure\ResourceInvoker.cs (3)
1056var lastTask = ResultNext<IAlwaysRunResultFilter, IAsyncAlwaysRunResultFilter>(ref next, ref scope, ref state, ref isCompleted); 1078await invoker.ResultNext<IAlwaysRunResultFilter, IAsyncAlwaysRunResultFilter>(ref next, ref scope, ref state, ref isCompleted); 1125var resultFilterKind = typeof(TFilter) == typeof(IAlwaysRunResultFilter) ?
Microsoft.AspNetCore.Mvc.Core.TestCommon (4)
CommonResourceInvokerTest.cs (4)
1735var resultFilter = new Mock<IAlwaysRunResultFilter>(MockBehavior.Strict); 1838var resultFilter = new Mock<IAlwaysRunResultFilter>(MockBehavior.Strict); 1935var resultFilter = new Mock<IAlwaysRunResultFilter>(MockBehavior.Strict); 2042var resultFilter2 = new Mock<IAlwaysRunResultFilter>(MockBehavior.Strict);