File: Template\MatchKind.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.

namespace Microsoft.TemplateEngine.Edge.Template
{
    public enum MatchKind
    {
        Unspecified,    // TODO: rename to "ParseError". Will have to be done for a major version release.
        Exact,
        Partial,        // only used for name & name-type field matches
        AmbiguousParameterValue,    // when the value is a starts with match on more than one choice value.
        InvalidParameterName,
        InvalidParameterValue,
        Mismatch,       // only used for template language
        SingleStartsWith
    }
}