Class JsonArray
Represents the json array.
Inheritance
System.Object
System.Collections.Generic.List<System.Object>
JsonArray
Namespace:Dapplo.HttpExtensions
Assembly:Dapplo.HttpExtensions.dll
Syntax
public class JsonArray : List<object>, IList<object>, ICollection<object>, IList, ICollection, IReadOnlyList<object>, IReadOnlyCollection<object>, IEnumerable<object>, IEnumerable
Constructors
| Improve this Doc View SourceJsonArray()
Initializes a new instance of the JsonArray class.
Declaration
public JsonArray()
JsonArray(Int32)
Initializes a new instance of the JsonArray class.
Declaration
public JsonArray(int capacity)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | capacity | The capacity of the json array. |
Methods
| Improve this Doc View SourceToString()
The json representation of the array.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | The json representation of the array. |