3 implementations of Order
Microsoft.AspNetCore.Mvc.Core (3)
ActionConstraints\ActionMethodSelectorAttribute.cs (1)
17
public int
Order
{ get; set; }
ActionConstraints\HttpMethodActionConstraint.cs (1)
56
public int
Order
=> HttpMethodConstraintOrder;
ConsumesAttribute.cs (1)
83
int IActionConstraint.
Order
=> ConsumesActionConstraintOrder;
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)
162
if ((startingOrder == null || constraint.
Order
> startingOrder) &&
163
(order == null || constraint.
Order
< order))
165
order = constraint.
Order
;
201
if (constraint.
Order
== order)
Routing\ActionConstraintMatcherPolicy.cs (4)
174
if ((startingOrder == null || constraint.
Order
> startingOrder) &&
175
(order == null || constraint.
Order
< order))
177
order = constraint.
Order
;
213
if (constraint.
Order
== order)