Example #1
0
 public NCMBObject(NCMB ncmb, string name)
 {
     _ncmb     = ncmb;
     this.Name = name;
     _fields   = new JObject();
     _objects  = new Dictionary <string, object>();
 }
Example #2
0
 public NCMBRequest(NCMB ncmb)
 {
     _ncmb = ncmb;
 }
Example #3
0
 public NCMBQuery(NCMB ncmb, string name)
 {
     this.Name  = name;
     this._ncmb = ncmb;
     this.where = new JObject();
 }