Click or drag to resize
RegisterHttpHandlerAttributeOrder Property
Gets or sets the order weight of the route.

Namespace: CMS.Routing.Web
Assembly: CMS.Routing.Web (in CMS.Routing.Web.dll) Version: 9.0.0
Syntax
C#
public int Order { get; set; }

Property Value

Type: Int32
Remarks
Routes are sorted for each HTTP handler in increasing order based on the order value. Routes without the order weight specified have an order value of 0. Negative values are valid and can be used to position a route before all non-negative routes.
See Also