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