Add docs to RouteValuesAddress (#695)

This commit is contained in:
James Newton-King 2018-08-07 13:14:35 +12:00 committed by GitHub
parent 0aee3f3595
commit 39c5700148
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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; }
}
}