1 instantiation of ActionConstraintProviderContext
Microsoft.AspNetCore.Mvc.Core (1)
ActionConstraints\ActionConstraintCache.cs (1)
123var context = new ActionConstraintProviderContext(httpContext, action, items);
12 references to ActionConstraintProviderContext
Microsoft.AspNetCore.Mvc.Abstractions (7)
ActionConstraints\ActionConstraintProviderContext.cs (1)
15/// Creates a new <see cref="ActionConstraintProviderContext"/>.
ActionConstraints\IActionConstraintProvider.cs (6)
34/// <see cref="Order"/> for details on the order of execution of <see cref="OnProvidersExecuting(ActionConstraintProviderContext)"/>. 36/// <param name="context">The <see cref="ActionConstraintProviderContext"/>.</param> 37void OnProvidersExecuting(ActionConstraintProviderContext context); 42/// <see cref="Order"/> for details on the order of execution of <see cref="OnProvidersExecuted(ActionConstraintProviderContext)"/>. 44/// <param name="context">The <see cref="ActionConstraintProviderContext"/>.</param> 45void OnProvidersExecuted(ActionConstraintProviderContext context);
Microsoft.AspNetCore.Mvc.Core (3)
ActionConstraints\ActionConstraintCache.cs (1)
123var context = new ActionConstraintProviderContext(httpContext, action, items);
ActionConstraints\DefaultActionConstraintProvider.cs (2)
20public void OnProvidersExecuting(ActionConstraintProviderContext context) 31public void OnProvidersExecuted(ActionConstraintProviderContext context)
Microsoft.AspNetCore.Mvc.Core.Test (2)
Infrastructure\ActionSelectorTest.cs (2)
1176public void OnProvidersExecuting(ActionConstraintProviderContext context) 1188public void OnProvidersExecuted(ActionConstraintProviderContext context)