8 references to _dictionary
Microsoft.Extensions.AI.Abstractions.Tests (8)
test\Shared\JsonSchemaExporter\TestTypes.cs (8)
1161public TValue this[TKey key] => _dictionary[key]; 1162public IEnumerable<TKey> Keys => _dictionary.Keys; 1163public IEnumerable<TValue> Values => _dictionary.Values; 1164public int Count => _dictionary.Count; 1165public bool ContainsKey(TKey key) => _dictionary.ContainsKey(key); 1166public IEnumerator<KeyValuePair<TKey, TValue>> GetEnumerator() => _dictionary.GetEnumerator(); 1168public bool TryGetValue(TKey key, [MaybeNullWhen(false)] out TValue value) => _dictionary.TryGetValue(key, out value); 1172IEnumerator IEnumerable.GetEnumerator() => ((IEnumerable)_dictionary).GetEnumerator();