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

◆ Deserialize< TValue >() [12/16]

static ? TValue System.Text.Json.JsonSerializer.Deserialize< TValue > ( this JsonDocument document,
JsonTypeInfo< TValue > jsonTypeInfo )
inlinestatic

Definition at line 55 of file JsonSerializer.cs.

56 {
57 if (document == null)
58 {
59 throw new ArgumentNullException("document");
60 }
61 if (jsonTypeInfo == null)
62 {
63 throw new ArgumentNullException("jsonTypeInfo");
64 }
66 }
static TValue ReadDocument< TValue >(JsonDocument document, JsonTypeInfo jsonTypeInfo)

References System.Text.Json.JsonSerializer.ReadDocument< TValue >().