4 implementations of OnProvidersExecuting
BasicWebSite (1)
ActionDescriptorCreationCounter.cs (1)
30
public void
OnProvidersExecuting
(ActionDescriptorProviderContext context)
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)
10 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);
Microsoft.AspNetCore.Mvc.Core.Test (4)
Infrastructure\DefaultActionDescriptorCollectionProviderTest.cs (3)
64
.Verify(v => v.
OnProvidersExecuting
(It.IsAny<ActionDescriptorProviderContext>()), Times.Once());
78
.Setup(p => p.
OnProvidersExecuting
(It.IsAny<ActionDescriptorProviderContext>()))
162
.Setup(p => p.
OnProvidersExecuting
(It.IsAny<ActionDescriptorProviderContext>()))
Routing\KnownRouteValueConstraintTests.cs (1)
280
.Setup(p => p.
OnProvidersExecuting
(It.IsAny<ActionDescriptorProviderContext>()))