From 855974f128b109f74f76fd62d5c299b6282a9e0f Mon Sep 17 00:00:00 2001 From: Ryan Nowak Date: Thu, 21 Jul 2016 14:24:08 -0700 Subject: [PATCH] Fix #4959 - Doc cleanup for RouteValueAttribute --- .../Routing/RouteValueAttribute.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/Microsoft.AspNetCore.Mvc.Core/Routing/RouteValueAttribute.cs b/src/Microsoft.AspNetCore.Mvc.Core/Routing/RouteValueAttribute.cs index 8edbdbc5ec..4c9d3ead75 100644 --- a/src/Microsoft.AspNetCore.Mvc.Core/Routing/RouteValueAttribute.cs +++ b/src/Microsoft.AspNetCore.Mvc.Core/Routing/RouteValueAttribute.cs @@ -10,9 +10,10 @@ namespace Microsoft.AspNetCore.Mvc.Routing /// An attribute which specifies a required route value for an action or controller. /// /// - /// When placed on an action, the route data of a request must match the expectations of the route - /// constraint in order for the action to be selected. See for - /// the expectations that must be satisfied by the route data. + /// When placed on an action, the route data of a request must match the expectations of the required route data + /// in order for the action to be selected. All other actions without a route value for the given key cannot be + /// selected unless the route data of the request does omits a value matching the key. + /// See for more details and examples. /// /// /// When placed on a controller, unless overridden by the action, the constraint applies to all