Implemented interface members:
method
TryGetValue
System.Collections.Generic.IReadOnlyDictionary<TKey, TValue>.TryGetValue(TKey, out TValue)
method
TryGetValue
System.Collections.Generic.IDictionary<TKey, TValue>.TryGetValue(TKey, out TValue)
8 references to TryGetValue
System.Collections (5)
System\Collections\Generic\OrderedDictionary.cs (5)
313if (key is TKey tkey && TryGetValue(tkey, out TValue? value)) 368if (!TryGetValue(key, out TValue? value)) 1204TryGetValue(item.Key, out TValue? value) && 1227TryGetValue(item.Key, out TValue? value) && 1345TryGetValue(pair.Key, out TValue? v) &&
System.Text.Json (3)
System\Text\Json\Nodes\JsonObject.cs (2)
125return Dictionary.TryGetValue(propertyName, out jsonNode); 184if (!otherDict.TryGetValue(item.Key, out JsonNode? jsonNode) || !DeepEquals(item.Value, jsonNode))
System\Text\Json\Nodes\JsonObject.IDictionary.cs (1)
191return Dictionary.TryGetValue(propertyName, out jsonNode);