diff --git a/src/Microsoft.AspNetCore.Routing/RouteValuesAddress.cs b/src/Microsoft.AspNetCore.Routing/RouteValuesAddress.cs
index fd910c3ead..eec1660854 100644
--- a/src/Microsoft.AspNetCore.Routing/RouteValuesAddress.cs
+++ b/src/Microsoft.AspNetCore.Routing/RouteValuesAddress.cs
@@ -3,12 +3,24 @@
namespace Microsoft.AspNetCore.Routing
{
+ ///
+ /// An address of route name and values.
+ ///
public class RouteValuesAddress
{
+ ///
+ /// Gets or sets the route name.
+ ///
public string RouteName { get; set; }
+ ///
+ /// Gets or sets the route values that are explicitly specified.
+ ///
public RouteValueDictionary ExplicitValues { get; set; }
+ ///
+ /// Gets or sets ambient route values from the current HTTP request.
+ ///
public RouteValueDictionary AmbientValues { get; set; }
}
}