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