Fixing xml doc comments

This commit is contained in:
Pranav K 2015-02-06 06:18:55 -08:00
parent be3f64c52d
commit 3f28a14c17
2 changed files with 12 additions and 12 deletions

View File

@ -4,12 +4,12 @@
namespace Microsoft.AspNet.Mvc namespace Microsoft.AspNet.Mvc
{ {
/// <summary> /// <summary>
/// Context object to be used for the URLs that <see cref="Mvc.IUrlHelper.Action(UrlActionContext)"/> generates. /// Context object to be used for the URLs that <see cref="IUrlHelper.Action(UrlActionContext)"/> generates.
/// </summary> /// </summary>
public class UrlActionContext public class UrlActionContext
{ {
/// <summary> /// <summary>
/// The name of the action method that <see cref="Mvc.UrlHelper.Action(UrlActionContext)" uses to generate URLs. /// The name of the action method that <see cref="IUrlHelper.Action(UrlActionContext)"/> uses to generate URLs.
/// </summary> /// </summary>
public string Action public string Action
{ {
@ -18,7 +18,7 @@ namespace Microsoft.AspNet.Mvc
} }
/// <summary> /// <summary>
/// The name of the controller that <see cref="Mvc.UrlHelper.Action(UrlActionContext)" uses to generate URLs. /// The name of the controller that <see cref="IUrlHelper.Action(UrlActionContext)"/> uses to generate URLs.
/// </summary> /// </summary>
public string Controller public string Controller
{ {
@ -27,7 +27,7 @@ namespace Microsoft.AspNet.Mvc
} }
/// <summary> /// <summary>
/// The object that contains the route parameters that <see cref="Mvc.IUrlHelper.Action(UrlActionContext)"/> /// The object that contains the route parameters that <see cref="IUrlHelper.Action(UrlActionContext)"/>
/// uses to generate URLs. /// uses to generate URLs.
/// </summary> /// </summary>
public object Values public object Values
@ -37,7 +37,7 @@ namespace Microsoft.AspNet.Mvc
} }
/// <summary> /// <summary>
/// The protocol for the URLs that <see cref="Mvc.UrlHelper.Action(UrlActionContext)" generates /// The protocol for the URLs that <see cref="IUrlHelper.Action(UrlActionContext)"/> generates
/// such as "http" or "https" /// such as "http" or "https"
/// </summary> /// </summary>
public string Protocol public string Protocol
@ -47,7 +47,7 @@ namespace Microsoft.AspNet.Mvc
} }
/// <summary> /// <summary>
/// The host name for the URLs that <see cref="Mvc.UrlHelper.Action(UrlActionContext)" generates. /// The host name for the URLs that <see cref="IUrlHelper.Action(UrlActionContext)"/> generates.
/// </summary> /// </summary>
public string Host public string Host
{ {
@ -56,7 +56,7 @@ namespace Microsoft.AspNet.Mvc
} }
/// <summary> /// <summary>
/// The fragment for the URLs that <see cref="Mvc.UrlHelper.Action(UrlActionContext)" generates. /// The fragment for the URLs that <see cref="IUrlHelper.Action(UrlActionContext)"/> generates.
/// </summary> /// </summary>
public string Fragment public string Fragment
{ {

View File

@ -4,12 +4,12 @@
namespace Microsoft.AspNet.Mvc namespace Microsoft.AspNet.Mvc
{ {
/// <summary> /// <summary>
/// Context object to be used for the URLs that <see cref="Mvc.IUrlHelper.RouteUrl(UrlRouteContext)"/> generates. /// Context object to be used for the URLs that <see cref="IUrlHelper.RouteUrl(UrlRouteContext)"/> generates.
/// </summary> /// </summary>
public class UrlRouteContext public class UrlRouteContext
{ {
/// <summary> /// <summary>
/// The name of the route that <see cref="Mvc.IUrlHelper.RouteUrl(UrlRouteContext)" uses to generate URLs. /// The name of the route that <see cref="IUrlHelper.RouteUrl(UrlRouteContext)"/> uses to generate URLs.
/// </summary> /// </summary>
public string RouteName public string RouteName
{ {
@ -27,7 +27,7 @@ namespace Microsoft.AspNet.Mvc
} }
/// <summary> /// <summary>
/// The protocol for the URLs that <see cref="Mvc.IUrlHelper.RouteUrl(UrlRouteContext)" generates /// The protocol for the URLs that <see cref="IUrlHelper.RouteUrl(UrlRouteContext)"/> generates
/// such as "http" or "https" /// such as "http" or "https"
/// </summary> /// </summary>
public string Protocol public string Protocol
@ -37,7 +37,7 @@ namespace Microsoft.AspNet.Mvc
} }
/// <summary> /// <summary>
/// The host name for the URLs that <see cref="Mvc.IUrlHelper.RouteUrl(UrlRouteContext)" generates. /// The host name for the URLs that <see cref="IUrlHelper.RouteUrl(UrlRouteContext)"/> generates.
/// </summary> /// </summary>
public string Host public string Host
{ {
@ -46,7 +46,7 @@ namespace Microsoft.AspNet.Mvc
} }
/// <summary> /// <summary>
/// The fragment for the URLs that <see cref="Mvc.IUrlHelper.RouteUrl(UrlRouteContext)" generates. /// The fragment for the URLs that <see cref="IUrlHelper.RouteUrl(UrlRouteContext)"/> generates.
/// </summary> /// </summary>
public string Fragment public string Fragment
{ {