From 9f0ae10cabde4ae2e62e13a2d1b234c5de42a67f Mon Sep 17 00:00:00 2001 From: Mark Seemann Date: Thu, 13 Aug 2020 18:18:29 +0200 Subject: [PATCH] [Mvc] Remove 'absolute' from documentation of Action (#23695) The generated urls are host relative in most cases, so correcting the documentation to reflect that. --- src/Mvc/Mvc.Core/src/UrlHelperExtensions.cs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/Mvc/Mvc.Core/src/UrlHelperExtensions.cs b/src/Mvc/Mvc.Core/src/UrlHelperExtensions.cs index 2a1d43d963..9c0f540f2f 100644 --- a/src/Mvc/Mvc.Core/src/UrlHelperExtensions.cs +++ b/src/Mvc/Mvc.Core/src/UrlHelperExtensions.cs @@ -11,7 +11,7 @@ namespace Microsoft.AspNetCore.Mvc public static class UrlHelperExtensions { /// - /// Generates a URL with an absolute path for an action method. + /// Generates a URL with a path for an action method. /// /// The . /// The generated URL. @@ -32,7 +32,7 @@ namespace Microsoft.AspNetCore.Mvc } /// - /// Generates a URL with an absolute path for an action method, which contains the specified + /// Generates a URL with a path for an action method, which contains the specified /// name. /// /// The . @@ -49,7 +49,7 @@ namespace Microsoft.AspNetCore.Mvc } /// - /// Generates a URL with an absolute path for an action method, which contains the specified + /// Generates a URL with a path for an action method, which contains the specified /// name and route . /// /// The . @@ -67,7 +67,7 @@ namespace Microsoft.AspNetCore.Mvc } /// - /// Generates a URL with an absolute path for an action method, which contains the specified + /// Generates a URL with a path for an action method, which contains the specified /// and names. /// /// The . @@ -85,7 +85,7 @@ namespace Microsoft.AspNetCore.Mvc } /// - /// Generates a URL with an absolute path for an action method, which contains the specified + /// Generates a URL with a path for an action method, which contains the specified /// name, name, and route . /// /// The . @@ -104,7 +104,7 @@ namespace Microsoft.AspNetCore.Mvc } /// - /// Generates a URL with an absolute path for an action method, which contains the specified + /// Generates a URL with a path for an action method, which contains the specified /// name, name, route , and /// to use. See the remarks section for important security information. /// @@ -138,7 +138,7 @@ namespace Microsoft.AspNetCore.Mvc } /// - /// Generates a URL with an absolute path for an action method, which contains the specified + /// Generates a URL with a path for an action method, which contains the specified /// name, name, route , /// to use, and name. /// Generates an absolute URL if the and are @@ -176,7 +176,7 @@ namespace Microsoft.AspNetCore.Mvc } /// - /// Generates a URL with an absolute path for an action method, which contains the specified + /// Generates a URL with a path for an action method, which contains the specified /// name, name, route , /// to use, name, and . /// Generates an absolute URL if the and are