1 instantiation of FilterProviderContext
Microsoft.AspNetCore.Mvc.Core (1)
Filters\FilterFactory.cs (1)
97var context = new FilterProviderContext(actionContext, filterItems);
12 references to FilterProviderContext
Microsoft.AspNetCore.Mvc.Abstractions (8)
Filters\FilterItem.cs (2)
10/// as part of <see cref="FilterProviderContext"/>. An <see cref="IFilterProvider"/> should 11/// inspect <see cref="FilterProviderContext.Results"/> and set <see cref="Filter"/> and
Filters\FilterProviderContext.cs (1)
12/// Instantiates a new <see cref="FilterProviderContext"/> instance.
Filters\IFilterProvider.cs (5)
7/// A <see cref="FilterItem"/> provider. Implementations should update <see cref="FilterProviderContext.Results"/> 36/// <param name="context">The <see cref="FilterProviderContext"/>.</param> 37void OnProvidersExecuting(FilterProviderContext context); 42/// <param name="context">The <see cref="FilterProviderContext"/>.</param> 43void OnProvidersExecuted(FilterProviderContext context);
Microsoft.AspNetCore.Mvc.Core (4)
Filters\DefaultFilterProvider.cs (3)
14public void OnProvidersExecuting(FilterProviderContext context) 31public void OnProvidersExecuted(FilterProviderContext context) 35public static void ProvideFilter(FilterProviderContext context, FilterItem filterItem)
Filters\FilterFactory.cs (1)
97var context = new FilterProviderContext(actionContext, filterItems);