9 implementations of Order
BasicWebSite (1)
RequestScopedActionConstraint.cs (1)
42public int Order { get; private set; }
Microsoft.AspNetCore.Mvc.Core (3)
ActionConstraints\ActionMethodSelectorAttribute.cs (1)
17public int Order { get; set; }
ActionConstraints\HttpMethodActionConstraint.cs (1)
56public int Order => HttpMethodConstraintOrder;
ConsumesAttribute.cs (1)
83int IActionConstraint.Order => ConsumesActionConstraintOrder;
Microsoft.AspNetCore.Mvc.Core.Test (2)
ActionConstraints\ActionConstraintCacheTest.cs (1)
128public int Order
Infrastructure\ActionSelectorTest.cs (1)
1147public int Order { get; set; }
Microsoft.AspNetCore.Mvc.Test (2)
Routing\ActionConstraintMatcherPolicyTest.cs (2)
502public int Order => 1; 514public int Order { get; set; }
VersioningWebSite (1)
VersionRangeValidator.cs (1)
13public int Order { get; set; }
12 references to Order
Microsoft.AspNetCore.Mvc.Abstractions (3)
ActionConstraints\IActionConstraint.cs (3)
26/// Stages run in ascending order based on the value of <see cref="Order"/>. Given a set of actions which 27/// are candidates for selection, the next stage to run is the lowest value of <see cref="Order"/> for any 43/// Constraints are grouped into stages by the value of <see cref="Order"/>. See remarks on
Microsoft.AspNetCore.Mvc.Core (9)
ActionConstraints\HttpMethodActionConstraint.cs (1)
18/// The <see cref="IActionConstraint.Order" /> value used by <see cref="HttpMethodActionConstraint" />.
Infrastructure\ActionSelector.cs (4)
162if ((startingOrder == null || constraint.Order > startingOrder) && 163(order == null || constraint.Order < order)) 165order = constraint.Order; 201if (constraint.Order == order)
Routing\ActionConstraintMatcherPolicy.cs (4)
174if ((startingOrder == null || constraint.Order > startingOrder) && 175(order == null || constraint.Order < order)) 177order = constraint.Order; 213if (constraint.Order == order)