forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRouteDataTokenKeys.cs
More file actions
27 lines (21 loc) · 1.16 KB
/
Copy pathRouteDataTokenKeys.cs
File metadata and controls
27 lines (21 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// 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.Mvc.Routing
{
internal class RouteDataTokenKeys
{
public const string UseNamespaceFallback = "UseNamespaceFallback";
public const string Namespaces = "Namespaces";
public const string Area = "area";
public const string Controller = "controller";
// Used to provide the action descriptors to consider for attribute routing
public const string Actions = "MS_DirectRouteActions";
// Used to allow customer-provided disambiguation between multiple matching attribute routes
public const string Order = "MS_DirectRouteOrder";
// Used to prioritize routes to actions for link generation
public const string TargetIsAction = "MS_DirectRouteTargetIsAction";
// Used to allow URI constraint-based disambiguation between multiple matching attribute routes
public const string Precedence = "MS_DirectRoutePrecedence";
public const string DirectRouteMatches = "MS_DirectRouteMatches";
}
}