3 implementations of OnProvidersExecuting
Microsoft.AspNetCore.Mvc.Core (1)
ApplicationModels\ControllerActionDescriptorProvider.cs (1)
30
public void
OnProvidersExecuting
(ActionDescriptorProviderContext context)
Microsoft.AspNetCore.Mvc.RazorPages (2)
Infrastructure\CompiledPageActionDescriptorProvider.cs (1)
48
public void
OnProvidersExecuting
(ActionDescriptorProviderContext context)
Infrastructure\PageActionDescriptorProvider.cs (1)
45
public void
OnProvidersExecuting
(ActionDescriptorProviderContext context)
6 references to OnProvidersExecuting
Microsoft.AspNetCore.Mvc.Abstractions (5)
Abstractions\IActionDescriptorProvider.cs (5)
16
/// Each provider has its <see cref="
OnProvidersExecuting
"/> method
36
/// <see cref="
OnProvidersExecuting
"/> called before that of a provider with a higher numeric value of
38
/// all calls to <see cref="
OnProvidersExecuting
"/>. A provider with a lower numeric value of
51
/// <see cref="Order"/> for details on the order of execution of <see cref="
OnProvidersExecuting
(ActionDescriptorProviderContext)"/>.
57
/// Called to execute the provider, after the <see cref="
OnProvidersExecuting
"/> methods of all providers,
Microsoft.AspNetCore.Mvc.Core (1)
Infrastructure\DefaultActionDescriptorCollectionProvider.cs (1)
124
_actionDescriptorProviders[i].
OnProvidersExecuting
(context);