3 references to TryGetValue
System.Text.Json (3)
System\Text\Json\JsonPropertyDictionary.cs (1)
382public bool TryGetPropertyValue(string propertyName, [MaybeNullWhen(false)] out T value) => TryGetValue(propertyName, out value);
System\Text\Json\Nodes\JsonObject.IDictionary.cs (1)
181bool IDictionary<string, JsonNode?>.TryGetValue(string propertyName, out JsonNode? jsonNode) => Dictionary.TryGetValue(propertyName, out jsonNode);
System\Text\Json\Serialization\Metadata\JsonTypeInfo.Cache.cs (1)
161if (PropertyCache!.TryGetValue(JsonHelpers.Utf8GetString(propertyName), out JsonPropertyInfo? info))