File: RouteAttribute.cs
Web Access
Project: src\src\Mvc\Mvc.Core\src\Microsoft.AspNetCore.Mvc.Core.csproj (Microsoft.AspNetCore.Mvc.Core)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System.Diagnostics.CodeAnalysis;
using Microsoft.AspNetCore.Mvc.Routing;
 
namespace Microsoft.AspNetCore.Mvc;
 
/// <summary>
/// Specifies an attribute route on a controller.
/// </summary>
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, AllowMultiple = true, Inherited = true)]
public class RouteAttribute : Attribute, IRouteTemplateProvider
{
    private int? _order;
 
    /// <summary>
    /// Creates a new <see cref="RouteAttribute"/> with the given route template.
    /// </summary>
    /// <param name="template">The route template. May not be null.</param>
    public RouteAttribute([StringSyntax("Route")] string template)
    {
        Template = template ?? throw new ArgumentNullException(nameof(template));
    }
 
    /// <inheritdoc />
    [StringSyntax("Route")]
    public string Template { get; }
 
    /// <summary>
    /// Gets the route order. The order determines the order of route execution. Routes with a lower order
    /// value are tried first. If an action defines a route by providing an <see cref="IRouteTemplateProvider"/>
    /// with a non <c>null</c> order, that order is used instead of this value. If neither the action nor the
    /// controller defines an order, a default value of 0 is used.
    /// </summary>
    public int Order
    {
        get { return _order ?? 0; }
        set { _order = value; }
    }
 
    /// <inheritdoc />
    int? IRouteTemplateProvider.Order => _order;
 
    /// <inheritdoc />
    public string? Name { get; set; }
}