IUrlHelper and support for RouteOptions.LowercaseUrls

IUrlHelper and support for RouteOptions.LowercaseUrls

#issue : https://github.com/aspnet/Mvc/issues/7720
This commit is contained in:
kishan.anem 2018-05-06 22:27:15 +05:30 committed by Ryan Nowak
parent 72a7c31973
commit 695fb00308
1 changed files with 5 additions and 0 deletions

View File

@ -154,6 +154,11 @@ namespace Microsoft.AspNetCore.Routing
if (_options.LowercaseUrls)
{
urlWithoutQueryString = urlWithoutQueryString.ToLowerInvariant();
if (!string.IsNullOrEmpty(queryString))
{
queryString = queryString.ToLowerInvariant();
}
}
if (_options.AppendTrailingSlash && !urlWithoutQueryString.EndsWith("/"))