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

◆ Deserialize() [7/16]

static ? object System.Text.Json.JsonSerializer.Deserialize ( Stream utf8Json,
Type returnType,
JsonSerializerContext context )
inlinestatic

Definition at line 922 of file JsonSerializer.cs.

923 {
924 if (utf8Json == null)
925 {
926 throw new ArgumentNullException("utf8Json");
927 }
928 if (returnType == null)
929 {
930 throw new ArgumentNullException("returnType");
931 }
932 if (context == null)
933 {
934 throw new ArgumentNullException("context");
935 }
937 }
static JsonTypeInfo GetTypeInfo(JsonSerializerOptions options, Type runtimeType)

References System.Text.Json.Dictionary, and System.Text.Json.JsonSerializer.GetTypeInfo().