This commit is contained in:
James Newton-King 2018-08-07 14:06:50 +12:00
commit bf1cc45e5e
No known key found for this signature in database
GPG Key ID: 0A66B2F456BF5526
1 changed files with 12 additions and 0 deletions

View File

@ -3,12 +3,24 @@
namespace Microsoft.AspNetCore.Routing
{
/// <summary>
/// An address of route name and values.
/// </summary>
public class RouteValuesAddress
{
/// <summary>
/// Gets or sets the route name.
/// </summary>
public string RouteName { get; set; }
/// <summary>
/// Gets or sets the route values that are explicitly specified.
/// </summary>
public RouteValueDictionary ExplicitValues { get; set; }
/// <summary>
/// Gets or sets ambient route values from the current HTTP request.
/// </summary>
public RouteValueDictionary AmbientValues { get; set; }
}
}