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

◆ HasMoreDataMultiSegment() [1/2]

bool System.Text.Json.Utf8JsonReader.HasMoreDataMultiSegment ( )
inlineprivate

Definition at line 2108 of file Utf8JsonReader.cs.

2109 {
2110 if (_consumed >= (uint)_buffer.Length)
2111 {
2113 {
2114 return false;
2115 }
2116 if (!GetNextSpan())
2117 {
2119 {
2121 }
2122 return false;
2123 }
2124 }
2125 return true;
2126 }

References System.Text.Json.Utf8JsonReader._buffer, System.Text.Json.Utf8JsonReader._consumed, System.Text.Json.Utf8JsonReader._isNotPrimitive, System.Text.Json.Utf8JsonReader.GetNextSpan(), System.Text.Json.Utf8JsonReader.IsLastSpan, System.ReadOnlySpan< T >.Length, and System.Text.Json.Utf8JsonReader.ValidateStateAtEndOfData().

Referenced by System.Text.Json.Utf8JsonReader.ConsumeNextTokenFromLastNonCommentTokenMultiSegment(), System.Text.Json.Utf8JsonReader.ConsumeNextTokenMultiSegment(), System.Text.Json.Utf8JsonReader.ConsumeNextTokenUntilAfterAllCommentsAreSkippedMultiSegment(), System.Text.Json.Utf8JsonReader.ConsumePropertyNameMultiSegment(), System.Text.Json.Utf8JsonReader.ConsumeValueMultiSegment(), System.Text.Json.Utf8JsonReader.ReadMultiSegment(), System.Text.Json.Utf8JsonReader.SkipAllCommentsMultiSegment(), and System.Text.Json.Utf8JsonReader.SkipAllCommentsMultiSegment().