Merge
This commit is contained in:
commit
bf1cc45e5e
|
|
@ -3,12 +3,24 @@
|
||||||
|
|
||||||
namespace Microsoft.AspNetCore.Routing
|
namespace Microsoft.AspNetCore.Routing
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// An address of route name and values.
|
||||||
|
/// </summary>
|
||||||
public class RouteValuesAddress
|
public class RouteValuesAddress
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Gets or sets the route name.
|
||||||
|
/// </summary>
|
||||||
public string RouteName { get; set; }
|
public string RouteName { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets or sets the route values that are explicitly specified.
|
||||||
|
/// </summary>
|
||||||
public RouteValueDictionary ExplicitValues { get; set; }
|
public RouteValueDictionary ExplicitValues { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets or sets ambient route values from the current HTTP request.
|
||||||
|
/// </summary>
|
||||||
public RouteValueDictionary AmbientValues { get; set; }
|
public RouteValueDictionary AmbientValues { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue