File: Routing\UrlRouteContext.cs
Web Access
Project: src\src\Mvc\Mvc.Abstractions\src\Microsoft.AspNetCore.Mvc.Abstractions.csproj (Microsoft.AspNetCore.Mvc.Abstractions)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Microsoft.AspNetCore.Mvc.Routing;
 
/// <summary>
/// Context object to be used for the URLs that <see cref="IUrlHelper.RouteUrl(UrlRouteContext)"/> generates.
/// </summary>
public class UrlRouteContext
{
    /// <summary>
    /// The name of the route that <see cref="IUrlHelper.RouteUrl(UrlRouteContext)"/> uses to generate URLs.
    /// </summary>
    public string? RouteName
    {
        get;
        set;
    }
 
    /// <summary>
    /// The object that contains the route values that <see cref="IUrlHelper.RouteUrl(UrlRouteContext)"/>
    /// uses to generate URLs.
    /// </summary>
    public object? Values
    {
        get;
        set;
    }
 
    /// <summary>
    /// The protocol for the URLs that <see cref="IUrlHelper.RouteUrl(UrlRouteContext)"/> generates,
    /// such as "http" or "https"
    /// </summary>
    public string? Protocol
    {
        get;
        set;
    }
 
    /// <summary>
    /// The host name for the URLs that <see cref="IUrlHelper.RouteUrl(UrlRouteContext)"/> generates.
    /// </summary>
    public string? Host
    {
        get;
        set;
    }
 
    /// <summary>
    /// The fragment for the URLs that <see cref="IUrlHelper.RouteUrl(UrlRouteContext)"/> generates.
    /// </summary>
    public string? Fragment
    {
        get;
        set;
    }
}