ChangeLog 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. 2008-09-23 Marek Habersack <[email protected]>
  2. * JavaScriptSerializer.cs: removed the LazyDictionary class, it's
  3. not needed anymore.
  4. 2008-09-23 Juraj Skripsky <[email protected]>
  5. * JsonSerializer.cs: "SerializeGenericDictionary" is an instance method,
  6. fix retrieval of its MethodInfo.
  7. Initialize serializeGenericDictionaryMethods (lazily).
  8. Add and use GetClosedIDictionaryBase to also handle cases where a
  9. non-generic class implements a closed IDictionary<,> (e.g.
  10. SomeDictionary : IDictionary<string, object>). Fixes bug #424704.
  11. First check for IDictionary<,>, then for IDictionary.
  12. 2008-09-20 Marek Habersack <[email protected]>
  13. * JsonDeserializer.cs: added support for stand-alone NaN, Infinity
  14. and -Infinity values, as well as the same within an array.
  15. 2008-09-19 Marek Habersack <[email protected]>
  16. * Json.cs: added new Serialize overload which takes a TextWriter
  17. for its output parameter.
  18. Added Deserialize methods.
  19. * JsonSerializer.cs: made InitialJavaScriptDateTicks internal.
  20. Added new Serialize overload which takes a TextWriter for its
  21. output parameter.
  22. Added WriteValue overloads for float and double - they must not be
  23. converted to strings as IConvertibles because their Max/MinValue
  24. end up converted incorrectly.
  25. * JavaScriptSerializer.cs: adjustments for the new JSON
  26. (de)serializer.
  27. * JsonDeserializer.cs: new JSON deserializer code, fully compliant
  28. with the .NET AJAX one.