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

◆ ReadCore< TValue >() [2/2]

static TValue System.Text.Json.JsonSerializer.ReadCore< TValue > ( ref JsonReaderState readerState,
bool isFinalBlock,
ReadOnlySpan< byte > buffer,
JsonSerializerOptions options,
ref ReadStack state,
JsonConverter converterBase )
inlinestaticprivate

Definition at line 1123 of file JsonSerializer.cs.

1124 {
1125 Utf8JsonReader reader = new Utf8JsonReader(buffer, isFinalBlock, readerState);
1128 TValue result = ReadCore<TValue>(converterBase, ref reader, options, ref state);
1129 readerState = reader.CurrentState;
1130 return result;
1131 }
static TValue ReadCore< TValue >(JsonConverter jsonConverter, ref Utf8JsonReader reader, JsonSerializerOptions options, ref ReadStack state)

References System.buffer, System.Text.Json.Utf8JsonReader.CurrentState, System.Text.Json.Dictionary, System.L, System.options, System.Text.Json.JsonSerializer.ReadCore< TValue >(), and System.state.