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