AttributeDictionary.cs (13)
35return Get(index).Value;
133var compare = StringComparer.OrdinalIgnoreCase.Compare(Get(pivot).Key, key);
207return string.Equals(item.Value, Get(index).Value, StringComparison.OrdinalIgnoreCase);
236array[arrayIndex + i] = Get(i);
263else if (string.Equals(item.Value, Get(index).Value, StringComparison.OrdinalIgnoreCase))
304value = Get(index).Value;
342public KeyValuePair<string, string?> Current => _attributes.Get(_index);
395if (string.Equals(item, _attributes.Get(i).Key, StringComparison.OrdinalIgnoreCase))
415array[arrayIndex + i] = _attributes.Get(i).Key;
452public string Current => _attributes.Get(_index).Key;
500if (string.Equals(item, _attributes.Get(i).Value, StringComparison.OrdinalIgnoreCase))
520array[arrayIndex + i] = _attributes.Get(i).Value;
557public string? Current => _attributes.Get(_index).Value;