2 implementations of Order
Microsoft.AspNetCore.Mvc.Core (1)
Infrastructure\ControllerActionInvokerProvider.cs (1)
57public int Order => -1000;
Microsoft.AspNetCore.Mvc.RazorPages (1)
Infrastructure\PageActionInvokerProvider.cs (1)
59public int Order { get; } = -1000;
9 references to Order
Microsoft.AspNetCore.Mvc.Abstractions (8)
Abstractions\IActionInvokerProvider.cs (8)
14/// an ascending sort of the <see cref="Order"/>. 31/// ascending numeric value of the <see cref="Order"/> property. 35/// Providers are executed in an ordering determined by an ascending sort of the <see cref="Order"/> property. 36/// A provider with a lower numeric value of <see cref="Order"/> will have its 38/// <see cref="Order"/>. The <see cref="OnProvidersExecuted"/> method is called in the reverse ordering after 40/// <see cref="Order"/> will have its <see cref="OnProvidersExecuted"/> method called after that of a provider 41/// with a higher numeric value of <see cref="Order"/>. 44/// If two providers have the same numeric value of <see cref="Order"/>, then their relative execution order
Microsoft.AspNetCore.Mvc.Core (1)
Infrastructure\ActionInvokerFactory.cs (1)
17_actionInvokerProviders = actionInvokerProviders.OrderBy(item => item.Order).ToArray();