1 override of TryGetValue
System.Text.Json (1)
System\Text\Json\Nodes\JsonValueOfT.cs (1)
38public override bool TryGetValue<T>([NotNullWhen(true)] out T value)
5 references to TryGetValue
Microsoft.AspNetCore.OpenApi (2)
Extensions\JsonNodeSchemaExtensions.cs (2)
479return jsonNode is JsonValue jsonValue && jsonValue.TryGetValue<string>(out var identifier) 488if (node is JsonValue jsonValue && jsonValue.TryGetValue<string>(out var identifier))
System.Text.Json (3)
System\Text\Json\Nodes\JsonNode.cs (1)
189/// <seealso cref="System.Text.Json.Nodes.JsonValue.TryGetValue"></seealso>
System\Text\Json\Nodes\JsonValueOfTPrimitive.cs (1)
32if (otherNode is JsonValue otherValue && otherValue.TryGetValue(out TValue? v))
System\Text\Json\Serialization\JsonSerializer.Read.HandleMetadata.cs (1)
466jsonValue.TryGetValue(out string? value) &&