Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ TryParseValue()

static bool System.Text.Json.JsonElement.TryParseValue ( ref Utf8JsonReader reader,
[NotNullWhen(true)] out JsonElement? element )
inlinestatic

Definition at line 658 of file JsonElement.cs.

659 {
660 JsonDocument document;
661 bool result = JsonDocument.TryParseValue(ref reader, out document, shouldThrow: false, useArrayPools: false);
662 element = document?.RootElement;
663 return result;
664 }

References System.Text.Json.Dictionary, and System.Text.Json.JsonDocument.TryParseValue().