public JsonCollection WithValue(object value) { var jsonValue = new JsonValue(value); this.Values.Add(jsonValue); return this; }
public JsonObject WithValue(string name, object value) { var jsonValue = new JsonValue(name, value); this.values.Add(jsonValue); return this; }