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

◆ StartArray()

void System.Text.Json.Utf8JsonReader.StartArray ( )
inlineprivate

Definition at line 504 of file Utf8JsonReader.cs.

505 {
507 {
508 ThrowHelper.ThrowJsonReaderException(ref this, ExceptionResource.ArrayDepthTooLarge, 0);
509 }
512 _consumed++;
514 _tokenType = JsonTokenType.StartArray;
515 _inObject = false;
516 }
ReadOnlySpan< T > Slice(int start)

References System.Text.Json.Utf8JsonReader._bitStack, System.Text.Json.Utf8JsonReader._buffer, System.Text.Json.Utf8JsonReader._bytePositionInLine, System.Text.Json.Utf8JsonReader._consumed, System.Text.Json.Utf8JsonReader._inObject, System.Text.Json.Utf8JsonReader._readerOptions, System.Text.Json.Utf8JsonReader._tokenType, System.Text.Json.BitStack.CurrentDepth, System.Text.Json.Dictionary, System.Text.Json.JsonReaderOptions.MaxDepth, System.Text.Json.BitStack.PushFalse(), System.ReadOnlySpan< T >.Slice(), System.Text.Json.ThrowHelper.ThrowJsonReaderException(), and System.Text.Json.Utf8JsonReader.ValueSpan.

Referenced by System.Text.Json.Utf8JsonReader.ConsumeValue(), and System.Text.Json.Utf8JsonReader.ConsumeValueMultiSegment().