Example #1
0
 public JsonArrayBuilder <T> AddStringArray([ItemCanBeNull] IEnumerable <string> value, bool nullable)
 {
     return(AddArray(RootJsonObjectBuilder.MakePrimitiveArray(value, nullable)));
 }
Example #2
0
 public JsonObjectBuilder <T> SByteArrayProperty(string key, IEnumerable <sbyte?> value)
 {
     return(ArrayProperty(key, RootJsonObjectBuilder.MakeNullablePrimitiveArray(value)));
 }
Example #3
0
 public JsonObjectBuilder <T> StringArrayProperty(string key, IEnumerable <string> value, bool nullable)
 {
     return(ArrayProperty(key, RootJsonObjectBuilder.MakePrimitiveArray(value, nullable)));
 }
Example #4
0
 public JsonArrayBuilder <T> AddDecimalArray(IEnumerable <decimal?> value)
 {
     return(AddArray(RootJsonObjectBuilder.MakeNullablePrimitiveArray(value)));
 }
Example #5
0
 public JsonArrayBuilder <T> AddCharArray(IEnumerable <char?> value)
 {
     return(AddArray(RootJsonObjectBuilder.MakeNullablePrimitiveArray(value)));
 }
Example #6
0
 public JsonArrayBuilder <T> AddSingleArray(IEnumerable <float?> value)
 {
     return(AddArray(RootJsonObjectBuilder.MakeNullablePrimitiveArray(value)));
 }
Example #7
0
 public JsonArrayBuilder <T> AddDoubleArray(IEnumerable <double> value)
 {
     return(AddArray(RootJsonObjectBuilder.MakePrimitiveArray(value)));
 }
Example #8
0
 public JsonArrayBuilder <T> AddUInt32Array(IEnumerable <uint> value)
 {
     return(AddArray(RootJsonObjectBuilder.MakePrimitiveArray(value)));
 }
Example #9
0
 public JsonArrayBuilder <T> AddUInt64Array(IEnumerable <ulong?> value)
 {
     return(AddArray(RootJsonObjectBuilder.MakeNullablePrimitiveArray(value)));
 }
Example #10
0
 public JsonObjectBuilder <T> BooleanArrayProperty(string key, IEnumerable <bool> value)
 {
     return(ArrayProperty(key, RootJsonObjectBuilder.MakePrimitiveArray(value)));
 }
Example #11
0
 public JsonArrayBuilder <T> AddInt16Array(IEnumerable <short?> value)
 {
     return(AddArray(RootJsonObjectBuilder.MakeNullablePrimitiveArray(value)));
 }
Example #12
0
 public JsonObjectBuilder <T> SingleArrayProperty(string key, IEnumerable <float> value)
 {
     return(ArrayProperty(key, RootJsonObjectBuilder.MakePrimitiveArray(value)));
 }
Example #13
0
 public JsonObjectBuilder <T> UInt64ArrayProperty(string key, IEnumerable <ulong> value)
 {
     return(ArrayProperty(key, RootJsonObjectBuilder.MakePrimitiveArray(value)));
 }
Example #14
0
 public JsonObjectBuilder <T> UInt16ArrayProperty(string key, IEnumerable <ushort?> value)
 {
     return(ArrayProperty(key, RootJsonObjectBuilder.MakeNullablePrimitiveArray(value)));
 }