ChangeLog 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. 2008-02-18 Atsushi Enomoto <[email protected]>
  2. * DataContractJsonSerializer.cs : IsStartObject() could raise
  3. an arbitrary exception, so wrap it inside try-catch too to enclose
  4. with SerializationException.
  5. * JsonSerializationReader.cs : support DBNull.
  6. 2008-01-30 Atsushi Enomoto <[email protected]>
  7. * DataContractJsonSerializer.cs : fixed .ctor(type, knonwTypes) that
  8. missed to delegate knownTypes correctly.
  9. * JsonSerializationReader.cs : consider KnownTypes correctly.
  10. Take "__type" fully into consideration, not just for arrays.
  11. 2008-01-30 Atsushi Enomoto <[email protected]>
  12. * JsonReader.cs : GetAttribute() was not still missing support for
  13. __type.
  14. 2008-01-30 Atsushi Enomoto <[email protected]>
  15. * JsonReader.cs : now __type is fully supported in every methods and
  16. properties in correct shape.
  17. 2008-01-30 Atsushi Enomoto <[email protected]>
  18. * JsonReader.cs : Do not consume "__type" (which is the first content
  19. of an object) as an element content. It must be handled as an
  20. attribute (it needs more changes).
  21. 2008-01-24 Atsushi Enomoto <[email protected]>
  22. * JsonSerializationReader.cs : when deserializing primitive strings,
  23. make use of "type" attribute (they are supposed to exist).
  24. Output source reader location if available.
  25. * JsonReader.cs : implement IXmlLineInfo.
  26. 2008-01-24 Atsushi Enomoto <[email protected]>
  27. * JsonSerializationReader.cs : new, for JSON deserialization support.
  28. * DataContractJsonSerializer.cs, TypeMap.cs :
  29. basic support for deserialization.
  30. 2008-01-24 Atsushi Enomoto <[email protected]>
  31. * DataContractJsonSerializer.cs,
  32. TypeMap.cs,
  33. JsonSerializationWriter.cs : split the first to those three files.
  34. 2008-01-24 Atsushi Enomoto <[email protected]>
  35. * DataContractJsonSerializer.cs : Uri and Guid are serialized as
  36. string. XmlQualifiedName is serialized as local:ns.
  37. 2008-01-22 Atsushi Enomoto <[email protected]>
  38. * JsonWriter.cs : allow __type attribute. It required couple of
  39. changes all around the class.
  40. * DataContractJsonSerializer.cs : implemented large part of
  41. serialization support (deserialization is not done yet).
  42. 2007-12-05 Atsushi Enomoto <[email protected]>
  43. * DataContractJsonSerializer.cs :
  44. moved from System.Runtime.Serialization and changed the namespace.
  45. * JsonReader.cs, JsonWriter.cs, JsonReaderWriterFactory.cs,
  46. IXmlJsonReaderInitializer.cs, IXmlJsonWriterInitializer.cs :
  47. moved from System.Xml and changed the namespace.