// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
namespace Microsoft.AspNetCore.Routing
{
///
/// Represents metadata used during link generation. If is true
/// the associated endpoint will not be used for link generation.
///
public interface ISuppressLinkGenerationMetadata
{
///
/// Gets a value indicating whether the assocated endpoint should be used for link generation.
///
bool SuppressLinkGeneration { get; }
}
}