Exemplo n.º 1
0
 public static new JArray Parse(string json)
 {
     return(JArray.Load(new JsonTextReader(new StringReader(json))));
 }
Exemplo n.º 2
0
 // Token: 0x0600120D RID: 4621 RVA: 0x000637A0 File Offset: 0x000619A0
 public new static JArray Load(JsonReader reader)
 {
     return(JArray.Load(reader, null));
 }
Exemplo n.º 3
0
 /// <summary>
 /// Loads an <see cref="T:Newtonsoft.Json.Linq.JArray" /> from a <see cref="T:Newtonsoft.Json.JsonReader" />.
 /// </summary>
 /// <param name="reader">A <see cref="T:Newtonsoft.Json.JsonReader" /> that will be read for the content of the <see cref="T:Newtonsoft.Json.Linq.JArray" />.</param>
 /// <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray" /> that contains the JSON that was read from the specified <see cref="T:Newtonsoft.Json.JsonReader" />.</returns>
 public static JArray Load(JsonReader reader)
 {
     return(JArray.Load(reader, (JsonLoadSettings)null));
 }
        public static JArray Parse(string json)
        {
            JsonReader reader = new JsonTextReader(new StringReader(json));

            return(JArray.Load(reader));
        }