Esempio n. 1
0
 public JSONElement(string type, JSONElement parent, string value = null)
 {
     this.type   = type;
     this.parent = parent;
     this.value  = value;
     this.child  = new JSONElementList();
 }
Esempio n. 2
0
 public JSONElement(string type)
 {
     this.type   = type;
     this.parent = null;
     this.value  = null;
     this.child  = new JSONElementList();
 }
Esempio n. 3
0
 public JSONElement(string type, JSONElement parent, string value, string scope)
 {
     this.type   = type;
     this.parent = parent;
     this.value  = value;
     this.child  = new JSONElementList();
     this.scope  = scope;
 }