Beispiel #1
0
 public JSONArray setJSONObject(int index, JSONObject value)
 {
     return(setValue(index, value.data));
 }
Beispiel #2
0
 public JSONObject setJSONObject(string key, JSONObject value)
 {
     return(setValue(key, value.data));
 }
Beispiel #3
0
 public JSONArray append(JSONObject value)
 {
     return(appendValue(value.data));
 }