File: ApplicationModels\IPageRouteModelConvention.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>
/// Allows customization of the <see cref="PageRouteModel"/>.
/// </summary>
public interface IPageRouteModelConvention : IPageConvention
{
    /// <summary>
    /// Called to apply the convention to the <see cref="PageRouteModel"/>.
    /// </summary>
    /// <param name="model">The <see cref="PageRouteModel"/>.</param>
    void Apply(PageRouteModel model);
}