6 implementations of Order
Microsoft.AspNetCore.Mvc.RazorPages (6)
ApplicationModels\AuthorizationPageApplicationModelProvider.cs (1)
25
public int
Order
=> -1000 + 10;
ApplicationModels\AutoValidateAntiforgeryPageApplicationModelProvider.cs (1)
12
public int
Order
=> -1000 + 10;
ApplicationModels\DefaultPageApplicationModelProvider.cs (1)
39
public int
Order
=> -1000;
ApplicationModels\ResponseCacheFilterApplicationModelProvider.cs (1)
25
public int
Order
=> -1000 + 10;
ApplicationModels\TempDataFilterPageApplicationModelProvider.cs (1)
20
public int
Order
=> -1000 + 10;
ApplicationModels\ViewDataAttributePageApplicationModelProvider.cs (1)
13
public int
Order
=> -1000 + 10;
12 references to Order
Microsoft.AspNetCore.Mvc.RazorPages (10)
ApplicationModels\IPageApplicationModelProvider.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="PageApplicationModel"/> instances. See <see cref="
Order
"/>.
39
/// Executed for the second pass of building <see cref="PageApplicationModel"/> instances. See <see cref="
Order
"/>.
Infrastructure\CompiledPageActionDescriptorFactory.cs (1)
28
_applicationModelProviders = applicationModelProviders.OrderBy(a => a.
Order
).ToArray();
Microsoft.AspNetCore.Mvc.RazorPages.Test (2)
Infrastructure\DefaultPageLoaderTest.cs (2)
164
provider1.SetupGet(p => p.
Order
).Returns(10);
166
provider2.SetupGet(p => p.
Order
).Returns(-5);