<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />

JArray

public bool IsReadOnly { get; }

public JToken this[int index] { get; set; }

public JArray()

public JArray(JArray other)

public JArray(object[] content)

public JArray(object content)

public static JArray FromObject(object o)

public static JArray FromObject(object o, JsonSerializer jsonSerializer)

public static JArray Load(JsonReader reader)

public static JArray Load(JsonReader reader, JsonLoadSettings settings)

public static Task<JArray> LoadAsync(JsonReader reader, CancellationToken cancellationToken = default)

public static Task<JArray> LoadAsync(JsonReader reader, JsonLoadSettings settings, CancellationToken cancellationToken = default)

public static JArray Parse(string json)

public static JArray Parse(string json, JsonLoadSettings settings)

public void Add(JToken item)

public void Clear()

public bool Contains(JToken item)

public void CopyTo(JToken[] array, int arrayIndex)

public int IndexOf(JToken item)

public void Insert(int index, JToken item)

public bool Remove(JToken item)

public void RemoveAt(int index)