Browse Source

2007-10-29 Atsushi Enomoto <[email protected]>

	* SoapException.cs : serialization constructor didn't call base.
	  Fixed bug #337421.


svn path=/trunk/mcs/; revision=88354
Atsushi Eno 18 years ago
parent
commit
19c82f604a

+ 5 - 0
mcs/class/System.Web.Services/System.Web.Services.Protocols/ChangeLog

@@ -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

+ 1 - 0
mcs/class/System.Web.Services/System.Web.Services.Protocols/SoapException.cs

@@ -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));