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