コード例 #1
0
    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);
    }
コード例 #3
0
 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);
 }