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