Update doc comments
This commit is contained in:
parent
7e25d7908a
commit
200a70bb86
|
|
@ -26,7 +26,7 @@ namespace Microsoft.AspNetCore.Mvc
|
|||
string Action(UrlActionContext actionContext);
|
||||
|
||||
/// <summary>
|
||||
/// Converts a virtual (relative) path to an application absolute path.
|
||||
/// Converts a virtual (relative, starting with ~/) path to an application absolute path.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// If the specified content path does not start with the tilde (~) character,
|
||||
|
|
|
|||
|
|
@ -338,7 +338,7 @@ namespace Microsoft.AspNetCore.Mvc
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Generates a URL with an absolute path for the specified <paramref name="pageName"/>.
|
||||
/// Generates a URL with a relative path for the specified <paramref name="pageName"/>.
|
||||
/// </summary>
|
||||
/// <param name="urlHelper">The <see cref="IUrlHelper"/>.</param>
|
||||
/// <param name="pageName">The page name to generate the url for.</param>
|
||||
|
|
@ -347,7 +347,7 @@ namespace Microsoft.AspNetCore.Mvc
|
|||
=> Page(urlHelper, pageName, values: null);
|
||||
|
||||
/// <summary>
|
||||
/// Generates a URL with an absolute path for the specified <paramref name="pageName"/>.
|
||||
/// Generates a URL with a relative path for the specified <paramref name="pageName"/>.
|
||||
/// </summary>
|
||||
/// <param name="urlHelper">The <see cref="IUrlHelper"/>.</param>
|
||||
/// <param name="pageName">The page name to generate the url for.</param>
|
||||
|
|
@ -357,7 +357,7 @@ namespace Microsoft.AspNetCore.Mvc
|
|||
=> Page(urlHelper, pageName, pageHandler, values: null);
|
||||
|
||||
/// <summary>
|
||||
/// Generates a URL with an absolute path for the specified <paramref name="pageName"/>.
|
||||
/// Generates a URL with a relative path for the specified <paramref name="pageName"/>.
|
||||
/// </summary>
|
||||
/// <param name="urlHelper">The <see cref="IUrlHelper"/>.</param>
|
||||
/// <param name="pageName">The page name to generate the url for.</param>
|
||||
|
|
@ -367,7 +367,7 @@ namespace Microsoft.AspNetCore.Mvc
|
|||
=> Page(urlHelper, pageName, pageHandler: null, values: values);
|
||||
|
||||
/// <summary>
|
||||
/// Generates a URL with an absolute path for the specified <paramref name="pageName"/>.
|
||||
/// Generates a URL with a relative path for the specified <paramref name="pageName"/>.
|
||||
/// </summary>
|
||||
/// <param name="urlHelper">The <see cref="IUrlHelper"/>.</param>
|
||||
/// <param name="pageName">The page name to generate the url for.</param>
|
||||
|
|
|
|||
Loading…
Reference in New Issue