Parcourir la source

SoapDocumentMethodAttribute.cs: Fixed bug in ResponseNamespace.

svn path=/trunk/mcs/; revision=22532
Lluis Sanchez il y a 22 ans
Parent
commit
378daeb850

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

@@ -1,3 +1,7 @@
+2004-01-27  Lluis Sanchez Gual <[email protected]>
+
+	* SoapDocumentMethodAttribute.cs: Fixed bug in ResponseNamespace.
+
 2004-01-24  Lluis Sanchez Gual <[email protected]>
 
 	* HttpWebClientProtocol.cs: Added missing property.

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

@@ -97,7 +97,7 @@ namespace System.Web.Services.Protocols {
 
 		public string ResponseNamespace {
 			get {
-				if (requestNamespace == null)
+				if (responseNamespace == null)
 					return "";
 				return responseNamespace;
 			}