コード例 #1
0
        /// <summary>
        ///     Reads the JSON representation of the object.
        /// </summary>
        /// <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader" /> to read from.</param>
        /// <param name="objectType">Type of the object.</param>
        /// <param name="existingValue">The existing value of object being read.</param>
        /// <param name="serializer">The calling serializer.</param>
        /// <returns>The object value.</returns>
        public override object ReadJson(JsonReader reader, Type objectType, object existingValue,
                                        JsonSerializer serializer)
        {
            var     result = new EmdRowCollection <T>();
            JObject json   = JObject.Load(reader);

            foreach (JToken row in json["row"])
            {
                result.Add(serializer.Deserialize <T>(row.CreateReader()));
            }
            return(result);
        }
コード例 #2
0
        /// <summary>
        ///     Reads the JSON representation of the object.
        /// </summary>
        /// <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader" /> to read from.</param>
        /// <param name="objectType">Type of the object.</param>
        /// <param name="existingValue">The existing value of object being read.</param>
        /// <param name="serializer">The calling serializer.</param>
        /// <returns>The object value.</returns>
        public override object ReadJson(JsonReader reader, Type objectType, object existingValue,
                                        JsonSerializer serializer)
        {
            var    result = new EmdRowCollection <T>();
            JArray json   = JArray.Load(reader);

            foreach (T a in json.Select(item => serializer.Deserialize <T>(item["row"].CreateReader())))
            {
                result.Add(a);
            }
            return(result);
        }