ChangeLog 1.9 KB

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