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

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

static ? TValue System.Text.Json.JsonSerializer.Deserialize< TValue > ( Stream utf8Json,
JsonTypeInfo< TValue > jsonTypeInfo )
inlinestatic

Definition at line 892 of file JsonSerializer.cs.

893 {
894 if (utf8Json == null)
895 {
896 throw new ArgumentNullException("utf8Json");
897 }
898 if (jsonTypeInfo == null)
899 {
900 throw new ArgumentNullException("jsonTypeInfo");
901 }
903 }
static TValue ReadAll< TValue >(Stream utf8Json, JsonTypeInfo jsonTypeInfo)

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