11 references to Mismatch
Microsoft.TemplateEngine.Edge (11)
Settings\FilteredTemplateInfo.cs (2)
22public bool IsMatch => MatchDisposition.Count > 0 && !MatchDisposition.Any(x => x.Kind == MatchKind.Mismatch); 26public bool IsPartialMatch => MatchDisposition.Any(x => x.Kind != MatchKind.Mismatch)
Settings\TemplateMatchInfo.cs (2)
46public bool IsMatch => MatchDisposition.Count > 0 && MatchDisposition.All(x => x.Kind != MatchKind.Mismatch); 48public bool IsPartialMatch => MatchDisposition.Any(x => x.Kind != MatchKind.Mismatch);
Template\WellKnownSearchFilters.cs (7)
52return new MatchInfo { Location = MatchLocation.Name, Kind = MatchKind.Mismatch }; 73return new MatchInfo { Location = MatchLocation.Context, Kind = MatchKind.Mismatch }; 98return new MatchInfo { Location = MatchLocation.Classification, Kind = MatchKind.Mismatch }; 120return new MatchInfo { Location = MatchLocation.Language, Kind = MatchKind.Mismatch }; 140return new MatchInfo { Location = MatchLocation.Baseline, Kind = MatchKind.Mismatch }; 202return new MatchInfo { Location = MatchLocation.Author, Kind = MatchKind.Mismatch }; 217return new MatchInfo { Location = MatchLocation.Author, Kind = MatchKind.Mismatch };