Implemented interface member:
property
MatchDisposition
Microsoft.TemplateEngine.Edge.Template.IFilteredTemplateInfo.MatchDisposition
1 write to MatchDisposition
Microsoft.TemplateEngine.Edge (1)
Settings\FilteredTemplateInfo.cs (1)
15MatchDisposition = matchDisposition;
8 references to MatchDisposition
Microsoft.TemplateEngine.Edge (8)
Settings\FilteredTemplateInfo.cs (8)
22public bool IsMatch => MatchDisposition.Count > 0 && !MatchDisposition.Any(x => x.Kind == MatchKind.Mismatch); 26public bool IsPartialMatch => MatchDisposition.Any(x => x.Kind != MatchKind.Mismatch) 27&& MatchDisposition.All(x => x.Location != MatchLocation.Context 31public bool HasParameterMismatch => MatchDisposition.Any(x => x.Location == MatchLocation.OtherParameter && x.Kind != MatchKind.Exact); 33public bool IsParameterMatch => !HasParameterMismatch && MatchDisposition.Any(x => x.Location == MatchLocation.OtherParameter); 35public bool HasInvalidParameterValue => MatchDisposition.Any(x => x.Location == MatchLocation.OtherParameter && x.Kind == MatchKind.InvalidParameterValue); 37public bool HasAmbiguousParameterMatch => !HasInvalidParameterValue && MatchDisposition.Any(x => x.Location == MatchLocation.OtherParameter && x.Kind == MatchKind.AmbiguousParameterValue);