5 implementations of Order
BasicWebSite (1)
ActionDescriptorCreationCounter.cs (1)
22public int Order
Microsoft.AspNetCore.Mvc.Core (1)
ApplicationModels\ControllerActionDescriptorProvider.cs (1)
27public int Order => -1000;
Microsoft.AspNetCore.Mvc.RazorPages (2)
Infrastructure\CompiledPageActionDescriptorProvider.cs (1)
45public int Order => _pageActionDescriptorProvider.Order;
Infrastructure\PageActionDescriptorProvider.cs (1)
42public int Order { get; set; } = -900; // Run after the default MVC provider, but before others.
Mvc.RoutingWebSite (1)
RemoveControllerActionDescriptorProvider.cs (1)
18public int Order => int.MaxValue;
12 references to Order
Microsoft.AspNetCore.Mvc.Abstractions (10)
Abstractions\IActionDescriptorProvider.cs (10)
13/// <see cref="IActionDescriptorProvider"/> instances are invoked in the ascending sort order of <see cref="Order"/>. 30/// ascending numeric value of the <see cref="Order"/> property. 34/// Providers are executed in an ordering determined by an ascending sort of the <see cref="Order"/> property. 35/// A provider with a lower numeric value of <see cref="Order"/> will have its 37/// <see cref="Order"/>. The <see cref="OnProvidersExecuted"/> method is called in the reverse ordering after 39/// <see cref="Order"/> will have its <see cref="OnProvidersExecuted"/> method called after that of a provider 40/// with a higher numeric value of <see cref="Order"/>. 43/// If two providers have the same numeric value of <see cref="Order"/>, then their relative execution order 51/// <see cref="Order"/> for details on the order of execution of <see cref="OnProvidersExecuting(ActionDescriptorProviderContext)"/>. 59/// <see cref="Order"/> for details on the order of execution of <see cref="OnProvidersExecuted(ActionDescriptorProviderContext)"/>.
Microsoft.AspNetCore.Mvc.Core (1)
Infrastructure\DefaultActionDescriptorCollectionProvider.cs (1)
34.OrderBy(p => p.Order)
Microsoft.AspNetCore.Mvc.Core.Test (1)
Routing\KnownRouteValueConstraintTests.cs (1)
276.SetupGet(p => p.Order)