2 instantiations of ActionDescriptorProviderContext
Microsoft.AspNetCore.Mvc.Core (1)
Infrastructure\DefaultActionDescriptorCollectionProvider.cs (1)
120
var context = new
ActionDescriptorProviderContext
();
Microsoft.AspNetCore.Mvc.RazorPages (1)
Infrastructure\CompiledPageActionDescriptorProvider.cs (1)
50
var newContext = new
ActionDescriptorProviderContext
();
15 references to ActionDescriptorProviderContext
Microsoft.AspNetCore.Mvc.Abstractions (7)
Abstractions\IActionDescriptorProvider.cs (7)
19
/// an opportunity to add or modify <see cref="
ActionDescriptorProviderContext
.Results"/>.
51
/// <see cref="Order"/> for details on the order of execution of <see cref="OnProvidersExecuting(
ActionDescriptorProviderContext
)"/>.
53
/// <param name="context">The <see cref="
ActionDescriptorProviderContext
"/>.</param>
54
void OnProvidersExecuting(
ActionDescriptorProviderContext
context);
59
/// <see cref="Order"/> for details on the order of execution of <see cref="OnProvidersExecuted(
ActionDescriptorProviderContext
)"/>.
61
/// <param name="context">The <see cref="
ActionDescriptorProviderContext
"/>.</param>
62
void OnProvidersExecuted(
ActionDescriptorProviderContext
context);
Microsoft.AspNetCore.Mvc.Core (3)
ApplicationModels\ControllerActionDescriptorProvider.cs (2)
30
public void OnProvidersExecuting(
ActionDescriptorProviderContext
context)
41
public void OnProvidersExecuted(
ActionDescriptorProviderContext
context)
Infrastructure\DefaultActionDescriptorCollectionProvider.cs (1)
120
var
context = new ActionDescriptorProviderContext();
Microsoft.AspNetCore.Mvc.RazorPages (5)
Infrastructure\CompiledPageActionDescriptorProvider.cs (3)
48
public void OnProvidersExecuting(
ActionDescriptorProviderContext
context)
50
var
newContext = new ActionDescriptorProviderContext();
82
public void OnProvidersExecuted(
ActionDescriptorProviderContext
context)
Infrastructure\PageActionDescriptorProvider.cs (2)
45
public void OnProvidersExecuting(
ActionDescriptorProviderContext
context)
77
public void OnProvidersExecuted(
ActionDescriptorProviderContext
context)