From 39c570014826fb6a4fde3b64c31a91fbe31b440a Mon Sep 17 00:00:00 2001 From: James Newton-King Date: Tue, 7 Aug 2018 13:14:35 +1200 Subject: [PATCH] Add docs to RouteValuesAddress (#695) --- .../RouteValuesAddress.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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; } } }