**** Merged from MCS ****
[mono-project.git] / mcs / class / corlib / System.Runtime.Serialization.Formatters.Binary / ChangeLog
blob33ba6b492a74b9c35739587bf9b81e3c566b8f62
1 2004-07-02  Lluis Sanchez Gual  <lluis@ximian.com>
3         * BinaryCommon.cs: Added CheckSerializable method.
4         * ObjectWriter.cs: Check for type serializability even for members with
5           null values.
6         
7 2004-05-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9         * ObjectWriter.cs: reduce contention in GetObjectData.
11 2004-05-14  Vladimir Vukicevic  <vladimir@pobox.com>
13         * binary_serialization_format.htm: renamed filename from having
14           spaces to _'s (checked with lluis)
16 2004-05-13  Lluis Sanchez Gual  <lluis@ximian.com>
18         * ObjectWriter.cs: Fixed and Simplified WriteGenericArray and 
19           WriteSingleDimensionArrayElements. This also fixes bug #58345.
21 2004-05-03  Lluis Sanchez Gual  <lluis@ximian.com>
23         * MessageFormatter.cs: In the all-are-primitive case, serialize Args, 
24           not OutArgs.
26 2004-04-28  Lluis Sanchez Gual <lluis@ximian.com>
28         * MessageFormatter.cs: Serialize Args, not OutArgs, like in MS.NET.
30 2004-04-26  Lluis Sanchez Gual <lluis@ximian.com>
32         * ObjectReader.cs, ObjectWriter.cs: FIXME cleaning.
34 2004-04-20  Lluis Sanchez Gual <lluis@ximian.com>
36         * CodeGenerator.cs, ObjectReader.cs, ObjectWriter.cs: Serialize decimals
37           as strings, like in MS.NET. This fixes bug #57186.
39 2004-02-23  Lluis Sanchez Gual <lluis@ximian.com>
41         * BinaryCommon.cs: Added UseReflectionSerialization property.
42         * CodeGenerator.cs, ObjectWriter.cs: When serializing the name of an 
43           inherited field, prefix the name with the class name. This fixes #54439.
44           Moved check for reflection serialization variable to BinaryCommon.
45         
46 2004-02-17  Lluis Sanchez Gual <lluis@ximian.com>
48         * ObjectWriter.cs: Factorized some serialization code in new classes, so it
49           is now possible to use fast IL generated classes that use direct access
50           to class fields instead of using reflection.
51         * CodeGenerator.cs: New file. Has several methods used by ObjectWriter to 
52           generate serialization code.
54 2004-02-05  Lluis Sanchez Gual <lluis@ximian.com>
56         * ObjectWriter.cs: Get the assembly of a member from the member's type, not
57           from the type of the value, because that is the type written in the
58           metadata section of the object.
60 2003-12-23  Lluis Sanchez Gual <lluis@ximian.com>
62         * ObjectReader.cs: Field names can include the type name if the field
63           belongs to a base type. Take this into account.
65 2003-11-26  Lluis Sanchez Gual <lluis@ximian.com>
67         * BinaryFormatter.cs: Added missing methods.
69 2003-11-20  Lluis Sanchez Gual <lluis@ximian.com>
71         * BinaryFormatter.cs, MessageFormatter.cs, ObjectReader.cs: Added support
72           for TypeFilter property.
74 2003-11-16  Lluis Sanchez Gual <lluis@ximian.com>
76         * BinaryFormatter.cs, MessageFormatter.cs, ObjectWriter.cs: 
77           Implemented support for AssemblyFormat property.
79 2003-11-12  Lluis Sanchez Gual <lluis@ximian.com>
81         * ObjectReader.cs, ObjectWriter.cs: Changed some GetType calls to "is" checks.
83 2003-07-28  Duncan Mak  <duncan@ximian.com>
85         * BinaryFormatter.cs (WriteBinaryHeader): changed from public to
86         private.
88 2003-07-25  Lluis Sanchez Gual <lluis@ximian.com>
90     * MessageFormatter.cs: WriteMethodCall(): It must write all parameters,
91       including ref and out.
93 2003-07-24  Lluis Sanchez Gual <lluis@ximian.com>
95     * ObjectReader.cs, ObjectWriter.cs, BinaryCommon.cs: Fixed bug #45970.
97 2003-07-17  Lluis Sanchez Gual <lluis@ximian.com>
99     * ObjectReader.cs: Keep MemberInfo members in type's metadata object, so it is
100       not necessary to query them for every object.
101     * ObjectWriter.cs: If the value being serialized is a value type (not boxed)
102       then there is no need to register it in the ObjectIDGenerator, because it is
103       not possible to have two references to the same value type object.
105 2003-05-13  Lluis Sanchez Gual <lluis@ideary.com>
107     * ObjectReader.cs: Changed signature of ReadObjectGraph, so now it returns the
108       deserialized object and the headers.
109     * MessageFormatter.cs: The result of the call to the HeaderHandler delegate is
110       now interpreted as the uri of the target object. This seems to be MS.NET
111       behavior.
112         * BinaryFormatter.cs: Deserialize now calls the HeaderHandler delegate,
113           if provided.
115 2003-02-25  Lluis Sanchez Gual <lluis@ideary.com>
117         * BinaryFormatter.cs: Implemented support for binders.
118     * MessageFormatter.cs: Implemented support for binders.
119     * ObjectReader.cs: Implemented support for binders.
121 2003-02-04  Lluis Sanchez Gual <lluis@ideary.com>
123     * MessageFormatter.cs: Fixed bug in serialization of arguments.
124     * ObjectReader.cs: Fixed bug causing array of structs to fail.
126 2003-02-11  Patrik Torstensson
128     * ObjectReader.cs: Fixed root object bug causing object reader to return root object 
129           before fixup. Closes bug #37842.
131 2003-02-04  Lluis Sanchez Gual <lluis@ideary.com>
133     * MessageFormatter.cs: Corrected some bugs that affected serialization of exceptions
135 2003-02-04  Lluis Sanchez Gual <lluis@ideary.com>
137     * MessageFormatter.cs: Implemented serialization of message properties.
139 2003-01-24  Martin Baulig  <martin@ximian.com>
141         * ObjectReader.cs (ReadNextObject): Call
142         RaiseDeserializationEvent() on the ObjectManager when we're done
143         reading the whole graph.
145 2003-01-24  Lluis Sanchez Gual <lluis@ideary.com>
147     * ObjectWriter.cs, ObjectReader.cs: Added suport for headers. 
148       Corrected encoding of primitive types. Corrected a bug about zero-length arrays. 
149     * MessageFormatter.cs: Added. Implements serialization of messages.
150     * BinaryFormatter.cs: Added serialization of messages.
151     * BinaryCommon.cs: Added enum of codes of primitive types.
153 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
155         * ObjectWriter.cs: make the exception message more useful.
157 2003-01-16  Lluis Sanchez Gual <lluis@ideary.com>
159     * BinaryFormatter.cs: implemented Serialize and Deserialize methods.
160     * ObjectReader.cs: added.
161     * ObjectWriter.cs: added.
162     * BinaryCommon.cs. added.
164 2002-08-22  Nick Drochak  <ndrochak@gol.com>
166         * BinaryArrayTypeEnum.cs: Removed Non-existent enum (must have been
167         from beta days)
169 2002-08-18  Dick Porter  <dick@ximian.com>
171         * BinaryFormatter.cs: Stubbed out