private bool RemoveIncludeTag(string tag) { if (!IncludeTags.Contains(tag)) { return(false); } return(IncludeTags.Remove(tag)); }
private bool AddIncludeTag(string tag) { if (IncludeTags.Contains(tag)) { return(false); } IncludeTags.Add(tag); return(true); }
public bool Includes(string tag) { return(!IncludeTags.Any() || IncludeTags.Contains(tag)); }