File: Template\ITemplateMatchInfo.cs
Web Access
Project: src\src\sdk\src\TemplateEngine\Microsoft.TemplateEngine.Edge\Microsoft.TemplateEngine.Edge.csproj (Microsoft.TemplateEngine.Edge)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using Microsoft.TemplateEngine.Abstractions;

namespace Microsoft.TemplateEngine.Edge.Template
{
    // Replacement for IFilteredTemplateInfo
    [Obsolete("moved to " + nameof(Abstractions.TemplateFiltering) + " namespace")]
    public interface ITemplateMatchInfo
    {
        ITemplateInfo Info { get; }

        IReadOnlyList<MatchInfo> MatchDisposition { get; }

        IReadOnlyList<MatchInfo> DispositionOfDefaults { get; }

        bool IsMatch { get; }

        bool IsPartialMatch { get; }

        void AddDisposition(MatchInfo newDisposition);
    }
}