public static JSONObject Create(AddJSONContents content)
    {
        JSONObject obj = Create();

        content.Invoke(obj);
        return(obj);
    }
示例#2
0
    public static VideoHostingJson Create(AddJSONContents content)
    {
        VideoHostingJson obj = Create();

        content.Invoke(obj);
        return(obj);
    }
 public JSONObject(AddJSONContents content)
 {
     content.Invoke(this);
 }
示例#4
0
 public static JSONObject Create(AddJSONContents content)
 {
     JSONObject obj = Create();
     content.Invoke(obj);
     return obj;
 }
示例#5
0
 public JSONObject(AddJSONContents content)
 {
     content.Invoke(this);
 }
示例#6
0
 public JSONObject(AddJSONContents content)
 {
     writesingleline = false;
     content.Invoke(this);
 }
示例#7
0
 private JSONObject(AddJSONContents content)
 {
     content.Invoke(this);
 }
示例#8
0
 public VideoHostingJson(AddJSONContents content)
 {
     content.Invoke(this);
 }