public override bool Contains(string prefix) { if (String.IsNullOrEmpty(prefix)) { return(_values.Any()); } return(_prefixes.Contains(prefix)); }