Exemplo n.º 1
0
 public JSONObject AddNull(string propertyName)
 {
     _parts.Add(JSONProperty.Null(propertyName));
     return(this);
 }
Exemplo n.º 2
0
 public JSONObject AddNumber(string propertyName, object number)
 {
     _parts.Add(JSONProperty.Number(propertyName, number));
     return(this);
 }
Exemplo n.º 3
0
 public JSONObject AddDate(string propertyName, DateTime date)
 {
     _parts.Add(JSONProperty.DateTime(propertyName, date));
     return(this);
 }
Exemplo n.º 4
0
 public JSONObject AddString(string propertyName, string propertyValue)
 {
     _parts.Add(JSONProperty.String(propertyName, propertyValue));
     return(this);
 }