Terraria v1.4.4.9
Terraria source code documentation
All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Macros

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

static ? TValue System.Text.Json.JsonSerializer.Deserialize< TValue > ( ref Utf8JsonReader reader,
JsonSerializerOptions? options = null )
inlinestatic

Definition at line 1256 of file JsonSerializer.cs.

1257 {
1258 JsonTypeInfo typeInfo = GetTypeInfo(options, typeof(TValue));
1259 return Read<TValue>(ref reader, typeInfo);
1260 }
static TValue Read< TValue >(ref Utf8JsonReader reader, JsonTypeInfo jsonTypeInfo)
static JsonTypeInfo GetTypeInfo(JsonSerializerOptions options, Type runtimeType)

References System.Text.Json.Dictionary, System.Text.Json.JsonSerializer.GetTypeInfo(), System.options, and System.Text.Json.JsonSerializer.Read< TValue >().