// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace System.Web.Http.Routing { /// /// Provides keys for looking up route values and data tokens. /// internal static class RouteDataTokenKeys { // Used to provide the action descriptors to consider for attribute routing public const string Actions = "actions"; // Used to indicate that a route is a controller-level attribute route. public const string Controller = "controller"; // Used to allow customer-provided disambiguation between multiple matching attribute routes public const string Order = "order"; // Used to allow URI constraint-based disambiguation between multiple matching attribute routes public const string Precedence = "precedence"; } }