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