JArray
public class JArray : JContainer, IList<JToken>, ICollection<JToken>, IEnumerable<JToken>, IEnumerable
Represents a JSON array.
Gets a value indicating whether the JArray is read-only.
Gets or sets the JToken at the specified index.
public JArray()
Initializes a new instance of the JArray class.
Initializes a new instance of the JArray class with the specified content.
Initializes a new instance of the JArray class with the specified content.
Creates a JArray from an object.
Creates a JArray from an object.
Loads an JArray from a JsonReader.
Loads an JArray from a JsonReader.
public static Task<JArray> LoadAsync(JsonReader reader, CancellationToken cancellationToken = default)
Asynchronously loads a JArray from a JsonReader.
public static Task<JArray> LoadAsync(JsonReader reader, JsonLoadSettings settings, CancellationToken cancellationToken = default)
Asynchronously loads a JArray from a JsonReader.
Load a JArray from a string that contains JSON.
Load a JArray from a string that contains JSON.
Adds an item to the JArray.
Removes all items from the JArray.
Determines whether the JArray contains a specific value.
Copies the elements of the JArray to an array, starting at a particular array index.
Returns an enumerator that iterates through the collection.
Determines the index of a specific item in the JArray.
Inserts an item to the JArray at the specified index.
Removes the first occurrence of a specific object from the JArray.
Removes the JArray item at the specified index.