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

◆ TrySkipHelper()

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

Definition at line 271 of file Utf8JsonReader.cs.

272 {
274 if (TokenType != JsonTokenType.PropertyName || Read())
275 {
276 if (TokenType != JsonTokenType.StartObject && TokenType != JsonTokenType.StartArray)
277 {
278 goto IL_0042;
279 }
281 while (Read())
282 {
284 {
285 continue;
286 }
287 goto IL_0042;
288 }
289 }
290 this = utf8JsonReader;
291 return false;
292 IL_0042:
293 return true;
294 }
Utf8JsonReader(ReadOnlySpan< byte > jsonData, bool isFinalBlock, JsonReaderState state)

References System.Text.Json.Utf8JsonReader.CurrentDepth, System.Text.Json.Dictionary, and System.Text.Json.Utf8JsonReader.Read().

Referenced by System.Text.Json.Utf8JsonReader.TrySkip().