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

◆ ParseValue() [2/5]

static JsonDocument System.Text.Json.JsonDocument.ParseValue ( ReadOnlySpan< byte > utf8Json,
JsonDocumentOptions options )
inlinestaticpackage

Definition at line 1141 of file JsonDocument.cs.

1142 {
1143 byte[] array = new byte[utf8Json.Length];
1144 utf8Json.CopyTo(array);
1145 return ParseUnrented(array.AsMemory(), options.GetReaderOptions());
1146 }
static JsonDocument ParseUnrented(ReadOnlyMemory< byte > utf8Json, JsonReaderOptions readerOptions, JsonTokenType tokenType=JsonTokenType.None)

References System.array, System.Text.Json.Dictionary, System.options, and System.Text.Json.JsonDocument.ParseUnrented().