Fix casing of 'URL' (#9080)

This commit is contained in:
Ronald Barendse
2020-10-05 20:48:38 +02:00
committed by GitHub
parent eaa0a3ba64
commit 2bfef74191
163 changed files with 554 additions and 554 deletions

View File

@@ -9,7 +9,7 @@ using Umbraco.Core.Logging;
namespace Umbraco.Core.Sync
{
/// <summary>
/// A helper used to determine the current server umbraco application url.
/// A helper used to determine the current server umbraco application URL.
/// </summary>
public static class ApplicationUrlHelper
{
@@ -17,12 +17,12 @@ namespace Umbraco.Core.Sync
private static readonly Type TypeOfApplicationUrlHelper = typeof(ApplicationUrlHelper);
/// <summary>
/// Gets or sets a custom provider for the umbraco application url.
/// Gets or sets a custom provider for the umbraco application URL.
/// </summary>
/// <remarks>
/// <para>Receives the current request as a parameter, and it may be null. Must return a properly
/// formatted url with scheme and umbraco dir and no trailing slash eg "http://www.mysite.com/umbraco",
/// or <c>null</c>. To be used in auto-load-balancing scenarios where the application url is not
/// formatted URL with scheme and umbraco dir and no trailing slash eg "http://www.mysite.com/umbraco",
/// or <c>null</c>. To be used in auto-load-balancing scenarios where the application URL is not
/// in config files but is determined programmatically.</para>
/// <para>Must be assigned before resolution is frozen.</para>
/// </remarks>
@@ -67,7 +67,7 @@ namespace Umbraco.Core.Sync
}
// try the server registrar
// which is assumed to return a url that:
// which is assumed to return a URL that:
// - end with SystemDirectories.Umbraco
// - contain a scheme
// - end or not with a slash, it will be taken care of

View File

@@ -46,11 +46,11 @@ namespace Umbraco.Core.Sync
}
/// <summary>
/// Gets the current umbraco application url.
/// Gets the current umbraco application URL.
/// </summary>
public string GetCurrentServerUmbracoApplicationUrl()
{
// this registrar does not provide the umbraco application url
// this registrar does not provide the umbraco application URL
return null;
}

View File

@@ -18,11 +18,11 @@ namespace Umbraco.Core.Sync
ServerRole GetCurrentServerRole();
/// <summary>
/// Gets the current umbraco application url.
/// Gets the current umbraco application URL.
/// </summary>
/// <remarks>
/// <para>If the registrar does not provide the umbraco application url, should return null.</para>
/// <para>Must return null, or a url that ends with SystemDirectories.Umbraco, and contains a scheme, eg "http://www.mysite.com/umbraco".</para>
/// <para>If the registrar does not provide the umbraco application URL, should return null.</para>
/// <para>Must return null, or a URL that ends with SystemDirectories.Umbraco, and contains a scheme, eg "http://www.mysite.com/umbraco".</para>
/// </remarks>
string GetCurrentServerUmbracoApplicationUrl();
}