1 instantiation of ActionInvokerProviderContext
Microsoft.AspNetCore.Mvc.Core (1)
Infrastructure\ActionInvokerFactory.cs (1)
22var context = new ActionInvokerProviderContext(actionContext);
13 references to ActionInvokerProviderContext
Microsoft.AspNetCore.Mvc.Abstractions (8)
Abstractions\ActionInvokerProviderContext.cs (1)
12/// Initializes a new instance of <see cref="ActionInvokerProviderContext"/>.
Abstractions\IActionDescriptorProvider.cs (1)
17/// called in sequence and given the same instance of <see cref="ActionInvokerProviderContext"/>. Then each
Abstractions\IActionInvokerProvider.cs (6)
18/// called in sequence and given the same instance of <see cref="ActionInvokerProviderContext"/>. Then each 20/// the value of <see cref="ActionInvokerProviderContext.Result"/>. 53/// <param name="context">The <see cref="ActionInvokerProviderContext"/>.</param> 54void OnProvidersExecuting(ActionInvokerProviderContext context); 60/// <param name="context">The <see cref="ActionInvokerProviderContext"/>.</param> 61void OnProvidersExecuted(ActionInvokerProviderContext context);
Microsoft.AspNetCore.Mvc.Core (3)
Infrastructure\ActionInvokerFactory.cs (1)
22var context = new ActionInvokerProviderContext(actionContext);
Infrastructure\ControllerActionInvokerProvider.cs (2)
66public void OnProvidersExecuting(ActionInvokerProviderContext context) 97public void OnProvidersExecuted(ActionInvokerProviderContext context)
Microsoft.AspNetCore.Mvc.RazorPages (2)
Infrastructure\PageActionInvokerProvider.cs (2)
67public void OnProvidersExecuting(ActionInvokerProviderContext context) 108public void OnProvidersExecuted(ActionInvokerProviderContext context)