Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mcs
diff options
context:
space:
mode:
authorAtsushi Eno <atsushieno@gmail.com>2010-01-20 17:30:29 +0300
committerAtsushi Eno <atsushieno@gmail.com>2010-01-20 17:30:29 +0300
commitede3b7e64e99aa10d8eb62800694f5066191d5d3 (patch)
treed976254a609333cc04a7fa1c428b4ece3e684dd9 /mcs
parent9a72f4cdb69ceaaa4cbdda3873460e457d247d88 (diff)
2010-01-20 Atsushi Enomoto <atsushi@ximian.com>
* AddressHeader.cs : XmlSchema.InstanceNamespace didn't exist in 2.1 :( svn path=/trunk/mcs/; revision=149908
Diffstat (limited to 'mcs')
-rw-r--r--mcs/class/System.ServiceModel/System.ServiceModel.Channels/AddressHeader.cs2
-rwxr-xr-xmcs/class/System.ServiceModel/System.ServiceModel.Channels/ChangeLog4
2 files changed, 5 insertions, 1 deletions
diff --git a/mcs/class/System.ServiceModel/System.ServiceModel.Channels/AddressHeader.cs b/mcs/class/System.ServiceModel/System.ServiceModel.Channels/AddressHeader.cs
index 06ad8d12c12..4372574e1ee 100644
--- a/mcs/class/System.ServiceModel/System.ServiceModel.Channels/AddressHeader.cs
+++ b/mcs/class/System.ServiceModel/System.ServiceModel.Channels/AddressHeader.cs
@@ -178,7 +178,7 @@ namespace System.ServiceModel.Channels
protected override void OnWriteAddressHeaderContents (XmlDictionaryWriter writer)
{
if (value == null)
- writer.WriteAttributeString ("i", "nil", XmlSchema.InstanceNamespace, "true");
+ writer.WriteAttributeString ("i", "nil", "http://www.w3.org/2001/XMLSchema-instance", "true");
else
this.formatter.WriteObject (writer, value);
}
diff --git a/mcs/class/System.ServiceModel/System.ServiceModel.Channels/ChangeLog b/mcs/class/System.ServiceModel/System.ServiceModel.Channels/ChangeLog
index 70dbf110deb..a57a6ba172c 100755
--- a/mcs/class/System.ServiceModel/System.ServiceModel.Channels/ChangeLog
+++ b/mcs/class/System.ServiceModel/System.ServiceModel.Channels/ChangeLog
@@ -1,5 +1,9 @@
2010-01-20 Atsushi Enomoto <atsushi@ximian.com>
+ * AddressHeader.cs : XmlSchema.InstanceNamespace didn't exist in 2.1 :(
+
+2010-01-20 Atsushi Enomoto <atsushi@ximian.com>
+
* AddressHeader.cs : implement remaining bits.
Eliminate dependency on NetDataContractSerializer.