File: ApplicationModels\PageRouteMetadata.cs
Web Access
Project: src\src\Mvc\Mvc.RazorPages\src\Microsoft.AspNetCore.Mvc.RazorPages.csproj (Microsoft.AspNetCore.Mvc.RazorPages)
// 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.ApplicationModels;
 
/// <summary>
/// Metadata used to construct an endpoint route to the page.
/// </summary>
// Note: This type name is referenced by name in AuthorizationMiddleware, do not change this without addressing https://github.com/dotnet/aspnetcore/issues/7011
public sealed class PageRouteMetadata
{
    /// <summary>
    /// Initializes a new instance of <see cref="PageRouteMetadata"/>.
    /// </summary>
    /// <param name="pageRoute">The page route.</param>
    /// <param name="routeTemplate">The route template specified by the page.</param>
    public PageRouteMetadata(string pageRoute, string? routeTemplate)
    {
        PageRoute = pageRoute;
        RouteTemplate = routeTemplate;
    }
 
    /// <summary>
    /// Gets the page route.
    /// </summary>
    public string PageRoute { get; }
 
    /// <summary>
    /// Gets the route template specified by the page.
    /// </summary>
    public string? RouteTemplate { get; }
}