3 implementations of Order
Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation (1)
RazorProjectPageRouteModelProvider.cs (1)
35
public int
Order
=> -1000 + 10;
Microsoft.AspNetCore.Mvc.RazorPages (1)
ApplicationModels\CompiledPageRouteModelProvider.cs (1)
34
public int
Order
=> -1000;
Microsoft.AspNetCore.Mvc.RazorPages.Test (1)
Infrastructure\PageActionDescriptorProviderTest.cs (1)
383
public int
Order
=> -1000;
10 references to Order
Microsoft.AspNetCore.Mvc.RazorPages (10)
ApplicationModels\IPageRouteModelProvider.cs (9)
13
/// ascending numeric value of the <see cref="
Order
"/> property.
17
/// Providers are executed in an ordering determined by an ascending sort of the <see cref="
Order
"/> property.
18
/// A provider with a lower numeric value of <see cref="
Order
"/> will have its
20
/// <see cref="
Order
"/>. The <see cref="OnProvidersExecuted"/> method is called in the reverse ordering after
22
/// <see cref="
Order
"/> will have its <see cref="OnProvidersExecuted"/> method called after that of a provider
23
/// with a higher numeric value of <see cref="
Order
"/>.
26
/// If two providers have the same numeric value of <see cref="
Order
"/>, then their relative execution order
33
/// Executed for the first pass of building <see cref="PageRouteModel"/> instances. See <see cref="
Order
"/>.
39
/// Executed for the second pass of building <see cref="PageRouteModel"/> instances. See <see cref="
Order
"/>.
Infrastructure\PageActionDescriptorProvider.cs (1)
33
_routeModelProviders = pageRouteModelProviders.OrderBy(p => p.
Order
).ToArray();