public JSONObject AddNull(string propertyName) { _parts.Add(JSONProperty.Null(propertyName)); return(this); }
public JSONObject AddNumber(string propertyName, object number) { _parts.Add(JSONProperty.Number(propertyName, number)); return(this); }
public JSONObject AddDate(string propertyName, DateTime date) { _parts.Add(JSONProperty.DateTime(propertyName, date)); return(this); }
public JSONObject AddString(string propertyName, string propertyValue) { _parts.Add(JSONProperty.String(propertyName, propertyValue)); return(this); }