Exemplo n.º 1
0
 public InitJsonParser(CharSource charSrc) : base(charSrc)
 {
 }
Exemplo n.º 2
0
 public StringJsonParser(CharSource charSrc, char c)
 {
     this.quote   = c;
     this.charSrc = charSrc;
     parse();
 }
Exemplo n.º 3
0
 public ObjectJsonParser(CharSource charSrc) : base(charSrc)
 {
 }
Exemplo n.º 4
0
 public JsonParserBase(CharSource charSrc)
 {
     this.charSrc = charSrc;
     parse();
 }
Exemplo n.º 5
0
 public ArrayJsonParser(CharSource charSrc) : base(charSrc)
 {
 }
Exemplo n.º 6
0
 public ValueJsonParser(CharSource charSrc) : base(charSrc)
 {
 }