Exemplo n.º 1
0
 public bool IncludesAny(List <string> tags)
 {
     return(!IncludeTags.Any() || IncludeTags.Intersect(tags).Any());
 }
Exemplo n.º 2
0
 public bool HasTagFilters()
 {
     return(IncludeTags.Any() || ExcludeTags.Any());
 }
Exemplo n.º 3
0
 public bool Includes(string tag)
 {
     return(!IncludeTags.Any() || IncludeTags.Contains(tag));
 }