* SoapException.cs : serialization constructor didn't call base. Fixed bug #337421. svn path=/trunk/mcs/; revision=88354
@@ -1,3 +1,8 @@
+2007-10-29 Atsushi Enomoto <[email protected]>
+
+ * SoapException.cs : serialization constructor didn't call base.
+ Fixed bug #337421.
2007-10-10 Atsushi Enomoto <[email protected]>
* Methods.cs : (SoapMethodStubInfo) reverted r74747 which caused
@@ -136,6 +136,7 @@ namespace System.Web.Services.Protocols
#if NET_2_0
protected SoapException (SerializationInfo info, StreamingContext context)
+ : base (info, context)
{
actor = info.GetString ("actor");
code = (XmlQualifiedName) info.GetValue ("code", typeof (XmlQualifiedName));