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