2 implementations of Order
Microsoft.AspNetCore.Mvc.Core (1)
Filters\DefaultFilterProvider.cs (1)
11
public int
Order
=> -1000;
Microsoft.AspNetCore.Mvc.Core.Test (1)
Filters\FilterFactoryTest.cs (1)
308
public int
Order
{ get; }
10 references to Order
Microsoft.AspNetCore.Mvc.Abstractions (9)
Filters\IFilterProvider.cs (9)
14
/// ascending numeric value of the <see cref="
Order
"/> property.
18
/// Providers are executed in an ordering determined by an ascending sort of the <see cref="
Order
"/> property.
19
/// A provider with a lower numeric value of <see cref="
Order
"/> will have its
21
/// <see cref="
Order
"/>. The <see cref="OnProvidersExecuted"/> method is called in the reverse ordering after
23
/// <see cref="
Order
"/> will have its <see cref="OnProvidersExecuted"/> method called after that of a provider
24
/// with a higher numeric value of <see cref="
Order
"/>.
27
/// If two providers have the same numeric value of <see cref="
Order
"/>, then their relative execution order
34
/// Called in increasing <see cref="
Order
"/>.
40
/// Called in decreasing <see cref="
Order
"/>, after all <see cref="IFilterProvider"/>s have executed once.
Microsoft.AspNetCore.Mvc.Core (1)
Infrastructure\ControllerActionInvokerCache.cs (1)
35
_filterProviders = filterProviders.OrderBy(item => item.
Order
).ToArray();