ChangeLog 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. 2003-07-28 Duncan Mak <[email protected]>
  2. * BinaryFormatter.cs (WriteBinaryHeader): changed from public to
  3. private.
  4. 2003-07-25 Lluis Sanchez Gual <[email protected]>
  5. * MessageFormatter.cs: WriteMethodCall(): It must write all parameters,
  6. including ref and out.
  7. 2003-07-24 Lluis Sanchez Gual <[email protected]>
  8. * ObjectReader.cs, ObjectWriter.cs, BinaryCommon.cs: Fixed bug #45970.
  9. 2003-07-17 Lluis Sanchez Gual <[email protected]>
  10. * ObjectReader.cs: Keep MemberInfo members in type's metadata object, so it is
  11. not necessary to query them for every object.
  12. * ObjectWriter.cs: If the value being serialized is a value type (not boxed)
  13. then there is no need to register it in the ObjectIDGenerator, because it is
  14. not possible to have two references to the same value type object.
  15. 2003-05-13 Lluis Sanchez Gual <[email protected]>
  16. * ObjectReader.cs: Changed signature of ReadObjectGraph, so now it returns the
  17. deserialized object and the headers.
  18. * MessageFormatter.cs: The result of the call to the HeaderHandler delegate is
  19. now interpreted as the uri of the target object. This seems to be MS.NET
  20. behavior.
  21. * BinaryFormatter.cs: Deserialize now calls the HeaderHandler delegate,
  22. if provided.
  23. 2003-02-25 Lluis Sanchez Gual <[email protected]>
  24. * BinaryFormatter.cs: Implemented support for binders.
  25. * MessageFormatter.cs: Implemented support for binders.
  26. * ObjectReader.cs: Implemented support for binders.
  27. 2003-02-04 Lluis Sanchez Gual <[email protected]>
  28. * MessageFormatter.cs: Fixed bug in serialization of arguments.
  29. * ObjectReader.cs: Fixed bug causing array of structs to fail.
  30. 2003-02-11 Patrik Torstensson
  31. * ObjectReader.cs: Fixed root object bug causing object reader to return root object
  32. before fixup. Closes bug #37842.
  33. 2003-02-04 Lluis Sanchez Gual <[email protected]>
  34. * MessageFormatter.cs: Corrected some bugs that affected serialization of exceptions
  35. 2003-02-04 Lluis Sanchez Gual <[email protected]>
  36. * MessageFormatter.cs: Implemented serialization of message properties.
  37. 2003-01-24 Martin Baulig <[email protected]>
  38. * ObjectReader.cs (ReadNextObject): Call
  39. RaiseDeserializationEvent() on the ObjectManager when we're done
  40. reading the whole graph.
  41. 2003-01-24 Lluis Sanchez Gual <[email protected]>
  42. * ObjectWriter.cs, ObjectReader.cs: Added suport for headers.
  43. Corrected encoding of primitive types. Corrected a bug about zero-length arrays.
  44. * MessageFormatter.cs: Added. Implements serialization of messages.
  45. * BinaryFormatter.cs: Added serialization of messages.
  46. * BinaryCommon.cs: Added enum of codes of primitive types.
  47. 2003-01-17 Gonzalo Paniagua Javier <[email protected]>
  48. * ObjectWriter.cs: make the exception message more useful.
  49. 2003-01-16 Lluis Sanchez Gual <[email protected]>
  50. * BinaryFormatter.cs: implemented Serialize and Deserialize methods.
  51. * ObjectReader.cs: added.
  52. * ObjectWriter.cs: added.
  53. * BinaryCommon.cs. added.
  54. 2002-08-22 Nick Drochak <[email protected]>
  55. * BinaryArrayTypeEnum.cs: Removed Non-existent enum (must have been
  56. from beta days)
  57. 2002-08-18 Dick Porter <[email protected]>
  58. * BinaryFormatter.cs: Stubbed out