8 references to _dictionary
Microsoft.Extensions.AI.Abstractions.Tests (8)
test\Shared\JsonSchemaExporter\TestTypes.cs (8)
1173public TValue this[TKey key] => _dictionary[key]; 1174public IEnumerable<TKey> Keys => _dictionary.Keys; 1175public IEnumerable<TValue> Values => _dictionary.Values; 1176public int Count => _dictionary.Count; 1177public bool ContainsKey(TKey key) => _dictionary.ContainsKey(key); 1178public IEnumerator<KeyValuePair<TKey, TValue>> GetEnumerator() => _dictionary.GetEnumerator(); 1182public bool TryGetValue(TKey key, out TValue value) => _dictionary.TryGetValue(key, out value); 1184IEnumerator IEnumerable.GetEnumerator() => ((IEnumerable)_dictionary).GetEnumerator();