1 instantiation of ActionConstraintProviderContext
Microsoft.AspNetCore.Mvc.Core (1)
ActionConstraints\ActionConstraintCache.cs (1)
123
var 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>
37
void 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>
45
void OnProvidersExecuted(
ActionConstraintProviderContext
context);
Microsoft.AspNetCore.Mvc.Core (3)
ActionConstraints\ActionConstraintCache.cs (1)
123
var
context = new ActionConstraintProviderContext(httpContext, action, items);
ActionConstraints\DefaultActionConstraintProvider.cs (2)
20
public void OnProvidersExecuting(
ActionConstraintProviderContext
context)
31
public void OnProvidersExecuted(
ActionConstraintProviderContext
context)
Microsoft.AspNetCore.Mvc.Core.Test (2)
Infrastructure\ActionSelectorTest.cs (2)
1176
public void OnProvidersExecuting(
ActionConstraintProviderContext
context)
1188
public void OnProvidersExecuted(
ActionConstraintProviderContext
context)