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

◆ Parse() [7/7]

static JsonDocument System.Text.Json.JsonDocument.Parse ( string json,
JsonDocumentOptions options = default(JsonDocumentOptions) )
inlinestatic

Definition at line 1215 of file JsonDocument.cs.

1216 {
1217 if (json == null)
1218 {
1219 throw new ArgumentNullException("json");
1220 }
1221 return Parse(json.AsMemory(), options);
1222 }
static void Parse(ReadOnlySpan< byte > utf8JsonSpan, JsonReaderOptions readerOptions, ref MetadataDb database, ref StackRowStack stack)

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