ChangeLog 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. 2005-10-03 Lluis Sanchez Gual <[email protected]>
  2. * ObjectIDGenerator.cs: Use custom comparer instead of an instance
  3. wrapper. Closes bug #76017.
  4. 2005-06-13 Lluis Sanchez Gual <[email protected]>
  5. * Formatter.cs: Properly initialize protected fields. Fixes bug #75233.
  6. 2005-05-17 Lluis Sanchez Gual <[email protected]>
  7. * SerializationInfo.cs: Use IsInstanceOfType instead of IsAssignableFrom
  8. since GetType() may not return the correct type if the object is
  9. a remoting proxy.
  10. 2005-05-09 Lluis Sanchez Gual <[email protected]>
  11. * FormatterServices.cs: In GetSerializableMembers, private fields
  12. from base classes must include the class name in the field name.
  13. In this case, it now creates a clone of the field with the
  14. modified name. This patch together with r44260 fixes bug #74760.
  15. 2004-12-09 Lluis Sanchez Gual <[email protected]>
  16. * ObjectManager.cs: When deserializing an object that implements
  17. ISerializable, check if a surrogate exists for that object, before
  18. trying to deserialize it as ISerializable. This fixes bug #70104.
  19. 2004-06-15 Gert Driesen <[email protected]>
  20. * ObjectIDGenerator.cs: added TODO for serialization
  21. 2004-06-09 Duncan Mak <[email protected]>
  22. * ObjectManager.cs (RegisterObject): Add checks for
  23. ArgumentNullException as well.
  24. 2004-06-09 Duncan Mak <[email protected]>
  25. * SerializationInfoEnumerator.cs: Instead of using
  26. IDictionaryEnumerator from a Hashtable, use a normal IEnumerator
  27. from the newly added ArrayList in SerializationInfo.
  28. * SerializationInfo.cs: Added an extra ArrayList so that we can
  29. keep the SerializationEntrys added in the order.
  30. (SerializationInfo, AddValue): Throw ArgumentNullException
  31. correctly.
  32. 2004-06-08 Duncan Mak <[email protected]>
  33. * ObjectManager.cs (RegisterObject): Throw
  34. ArgumentOutOfRangeException if the objectID parameter is less than
  35. or equal to zero. This check was missing from this particular
  36. overload.
  37. 2004-05-14 Marek Safar <[email protected]>
  38. * SerializationInfo.cs: Removed useless [CLSCompliant (false)]
  39. 2003-11-21 Andreas Nahr <[email protected]>
  40. * FormatterServices.cs: Added CheckTypeSecurity() and
  41. GetSafeUninitializedObject().
  42. 2003-11-18 Andreas Nahr <[email protected]>
  43. * ObjectManager.cs: Fixed header, internalized enum
  44. * Formatter.cs: Implemented
  45. 2003-11-11 Lluis Sanchez Gual <[email protected]>
  46. * FormatterServices.cs: Fixed some comments.
  47. 2003-10-21 Lluis Sanchez Gual <[email protected]>
  48. * SerializationInfo.cs: Fixed bug in GetValue. Use IsAssignableFrom instead
  49. of IsSubclass, since the type can be an interface.
  50. 2003-10-18 Lluis Sanchez Gual <[email protected]>
  51. * FormatterServices.cs: In GetUninitializedObject methdod, reuse
  52. ActivationServices.AllocateUninitializedClassInstance, it does the same.
  53. 2003-07-28 Duncan Mak <[email protected]>
  54. * Formatter.cs (WriteSByte): Added CLSCompliant attribute.
  55. 2003-07-26 Gonzalo Paniagua Javier <[email protected]>
  56. * FormatterServices.cs:
  57. (GetSerializableMembers): check that all base types are serializable
  58. when getting their fields. Fixes bug #46875.
  59. 2003-07-17 Lluis Sanchez Gual <[email protected]>
  60. * ObjectIDGenerator.cs: Optimized access to hashtable and reduced the
  61. number of calls to GetType(). (Patch by Paolo).
  62. Also added a NextId property that returns a new Id without registering
  63. an object.
  64. 2003-06-26 Lluis Sanchez Gual <[email protected]>
  65. * SerializationInfo.cs: Fixed bug #44955
  66. 2003-05-11 Gonzalo Paniagua Javier <[email protected]>
  67. * FormatterServices.cs: patch from Jean Marc that fixes bug #42742.
  68. 2003-02-18 Lluis Sanchez Gual <[email protected]>
  69. * ObjectManager.cs: Corrected a problem with arrays of structs. Elements where
  70. not correctly updated by the final fixup.
  71. 2003-01-27 Lluis Sanchez Gual <[email protected]>
  72. * ObjectManager.cs: Corrected a problem with IObjectReferece objects.
  73. 2003-01-24 Martin Baulig <[email protected]>
  74. * ObjectManager.cs (RaiseDeserializationEvent): Walk the object
  75. list in the correct order.
  76. 2003-01-16 Lluis Sanchez Gual <[email protected]>
  77. * ObjectManager.cs: Implemented and added file
  78. * SurrogateSelector.cs: completed implementation.
  79. * SerializationInfo.cs: corrected a bug in GetValue method.
  80. * ObjectIDGenerator.cs: corrected a bug. Now it does not give the same
  81. id for two different instances that return true when calling Equal.
  82. 2002-12-06 Duncan Mak <[email protected]>
  83. * Formatter.cs (WriteValueType): Remove the erroneous CLSCompliant attribute.
  84. 2002-08-16 Gonzalo Paniagua Javier <[email protected]>
  85. * FormatterServices.cs: implemented GetUninitializedObject.
  86. PopulateObjectMembers needs a working FieldInfo.SetValue (it's
  87. not implemented right now).
  88. 2002-08-16 Gonzalo Paniagua Javier <[email protected]>
  89. * FormatterServices.cs:a implemented GetSerializableMembers ().
  90. 2002-08-16 Gonzalo Paniagua Javier <[email protected]>
  91. * FormatterServices.cs: New file with some implementation.
  92. 2002-08-16 Dietmar Maurer <[email protected]>
  93. * SerializationInfo.cs: special case for null values.
  94. use the converter everywhere.
  95. 2002-08-14 Dietmar Maurer <[email protected]>
  96. * SerializationInfo.cs: added new function to support the runtime
  97. 2002-07-16 Gonzalo Paniagua Javier <[email protected]>
  98. * Formatter.cs: added namespace.
  99. 2002-06-10 Duncan Mak <[email protected]>
  100. * Formatter.cs: Addd to CVS.
  101. * FormatterConverter.cs: Added to CVS.
  102. * SerializationInfo.cs (AddValue): Removed extra CLSCompliant attribute.
  103. 2002-04-12 Duncan Mak <[email protected]>
  104. * SerializationException.cs: Added missing constructor for serialization.
  105. 2002-03-12 Duncan Mak <[email protected]>
  106. * IFormatter.cs: Fix the return type of the Serialize method.
  107. 2002/03/07 Nick Drochak <[email protected]>
  108. * StreamingContextStates.cs: Add missing value (CrossAppDomain) and
  109. adjust All value accordingly.
  110. 2002-03-01 Duncan Mak <[email protected]>
  111. * ObjectIDGenerator.cs: Implemented.
  112. 2002-02-19 Duncan Mak <[email protected]>
  113. * SurrogateSelector.cs: Implemented.
  114. * SerializationInfoEnumerator.cs: oh, and simplified the Current
  115. property too.
  116. * SerializationInfo.cs: Forgot to finish up GetEnumerator ().
  117. 2002-02-18 Duncan Mak <[email protected]>
  118. * SerializationInfo.cs: Converted Type.GetType calls to the faster
  119. typeof operator.
  120. 2002-02-16 Duncan Mak <[email protected]>
  121. * SurrogateSelector.cs: Stubbed out. Gonna be working on this
  122. tomorrow.
  123. 2002-02-15 Duncan Mak <[email protected]>
  124. * SerializationEntry.cs: Added internal constructor for writing
  125. bits in SerializationInfoEnumerator.
  126. * SerializationInfo.cs: Completed.
  127. * SerializationInfoEnumerator.cs: Implemented. Piggybacking on
  128. Hashtable's GetEnumerator method.
  129. 2002-02-13 Dan Lewis <[email protected]>
  130. * SerializationInfoEnumerator.cs: New file (stub)
  131. 2002-02-12 Duncan Mak <[email protected]>
  132. * SerializationBinder.cs: Implemented.
  133. * SerializationEntry.cs: Implemented.
  134. * SerializationInfo.cs: Fixed the get portion of the AssemblyName
  135. property. Implemented the FullTypename property.
  136. 2002-01-06 David Dawkins <[email protected]>
  137. * IFormatter.cs : New file
  138. * ISerializationSurrogate.cs : New file
  139. * ISurrogateSelector.cs : New file
  140. 2002-05-01 Ravi Pratap <[email protected]>
  141. * SerializationInfo.cs : Insert MonoTODO attribute.
  142. 2001-08-24 Nick Drochak <[email protected]>
  143. * IDeserializationCallback.cs: New File
  144. Wed Nov 14 17:03:30 CET 2001 Paolo Molaro <[email protected]>
  145. * IFormatterConverter.cs, SerializationInfo.cs: CLSCompliant updates.
  146. Fri Nov 2 18:40:12 CET 2001 Paolo Molaro <[email protected]>
  147. * SerializationException.cs: implemented.
  148. 2001-08-24 Nick Drochak <[email protected]>
  149. * SerializationInfo.cs: Added all the public methods so that the compile would not break
  150. 2001-07-20 Miguel de Icaza <[email protected]>
  151. * SerializationInfo.cs: New file.
  152. * IFormatterConverter.cs: New file.
  153. * ISerializable.cs: New file.