Beispiel #1
0
 public void Skip()
 {
     if (JsonReader.IsStartToken(this.TokenType))
     {
         int depth = this.Depth;
         while (this.Read() && depth < this.Depth)
         {
         }
     }
 }
Beispiel #2
0
 public void Skip()
 {
     if (this.TokenType == JsonToken.PropertyName)
     {
         this.Read();
     }
     if (JsonReader.IsStartToken(this.TokenType))
     {
         int depth = this.Depth;
         while (this.Read() && depth < this.Depth)
         {
         }
     }
 }
Beispiel #3
0
        public void Skip()
        {
            if (this.TokenType == JsonToken.PropertyName)
            {
                this.Read();
            }
            if (!JsonReader.IsStartToken(this.TokenType))
            {
                return;
            }
            int depth = this.Depth;

            do
            {
                ;
            }while (this.Read() && depth < this.Depth);
        }