Implemented interface members:
method
ContainsKey
System.Collections.Generic.IDictionary<TKey, TValue>.ContainsKey(TKey)
method
ContainsKey
System.Collections.Generic.IReadOnlyDictionary<TKey, TValue>.ContainsKey(TKey)
3 references to ContainsKey
System.Collections (2)
System\Collections\Generic\OrderedDictionary.cs (2)
1236return key is TKey tkey && ContainsKey(tkey); 1466public bool Contains(TKey key) => _dictionary.ContainsKey(key);
System.Text.Json (1)
System\Text\Json\Nodes\JsonObject.IDictionary.cs (1)
89return Dictionary.ContainsKey(propertyName);