5 references to Values
System.Collections (3)
System\Collections\Generic\OrderedDictionary.cs (3)
275IEnumerable<TValue> IReadOnlyDictionary<TKey, TValue>.Values => Values; 278ICollection<TValue> IDictionary<TKey, TValue>.Values => Values; 281ICollection IDictionary.Values => Values;
System.Text.Json (2)
System\Text\Json\Nodes\JsonObject.IDictionary.cs (2)
61foreach (JsonNode? node in dictionary.Values) 171ICollection<JsonNode?> IDictionary<string, JsonNode?>.Values => Dictionary.Values;