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

◆ Serialize< TValue >() [6/6]

static void System.Text.Json.JsonSerializer.Serialize< TValue > ( Utf8JsonWriter writer,
TValue value,
JsonTypeInfo< TValue > jsonTypeInfo )
inlinestatic

Definition at line 1909 of file JsonSerializer.cs.

1910 {
1911 if (writer == null)
1912 {
1913 throw new ArgumentNullException("writer");
1914 }
1915 if (jsonTypeInfo == null)
1916 {
1917 throw new ArgumentNullException("jsonTypeInfo");
1918 }
1920 }

References System.Text.Json.Dictionary, System.value, and System.writer.