Ejemplo n.º 1
0
        public JsonCollection WithValue(object value)
        {
            var jsonValue = new JsonValue(value);
            this.Values.Add(jsonValue);

            return this;
        }
Ejemplo n.º 2
0
        public JsonObject WithValue(string name, object value)
        {
            var jsonValue = new JsonValue(name, value);
            this.values.Add(jsonValue);

            return this;
        }