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
diff options
context:
space:
mode:
authorAtsushi Eno <atsushieno@gmail.com>2005-12-14 19:09:45 +0300
committerAtsushi Eno <atsushieno@gmail.com>2005-12-14 19:09:45 +0300
commit0afa9b22d74c83bb80762c96c8a93f3bb08c7769 (patch)
tree6ad08fa54803cf2c377bacbadbe57a443c6013ce /mcs/class/System.XML/System.Xml.XPath
parentd6003e95d68f06327b41e4c59b5333d81629f64a (diff)
2005-12-14 Atsushi Enomoto <atsushi@ximian.com>
* XPathNavigator.cs : Added MonoTODO to CreateAttributes(). Removed MonoTODO from ReadSubtree(). * XPathNavigatorReaderTests.cs : Actually AttributesAndNamespaces() does not work under MS.NET. svn path=/trunk/mcs/; revision=54366
Diffstat (limited to 'mcs/class/System.XML/System.Xml.XPath')
-rw-r--r--mcs/class/System.XML/System.Xml.XPath/ChangeLog5
-rw-r--r--mcs/class/System.XML/System.Xml.XPath/XPathNavigator.cs2
2 files changed, 6 insertions, 1 deletions
diff --git a/mcs/class/System.XML/System.Xml.XPath/ChangeLog b/mcs/class/System.XML/System.Xml.XPath/ChangeLog
index 1ce990609c0..a0043a953df 100644
--- a/mcs/class/System.XML/System.Xml.XPath/ChangeLog
+++ b/mcs/class/System.XML/System.Xml.XPath/ChangeLog
@@ -1,5 +1,10 @@
2005-12-14 Atsushi Enomoto <atsushi@ximian.com>
+ * XPathNavigator.cs : Added MonoTODO to CreateAttributes(). Removed
+ MonoTODO from ReadSubtree().
+
+2005-12-14 Atsushi Enomoto <atsushi@ximian.com>
+
* XPathNavigator.cs : UnderlyingObject returns null by default.
2005-12-13 Atsushi Enomoto <atsushi@ximian.com>
diff --git a/mcs/class/System.XML/System.Xml.XPath/XPathNavigator.cs b/mcs/class/System.XML/System.Xml.XPath/XPathNavigator.cs
index 0b24319ca73..ddb6a94a529 100644
--- a/mcs/class/System.XML/System.Xml.XPath/XPathNavigator.cs
+++ b/mcs/class/System.XML/System.Xml.XPath/XPathNavigator.cs
@@ -831,7 +831,6 @@ namespace System.Xml.XPath
} while (true);
}
- [MonoTODO]
public virtual XmlReader ReadSubtree ()
{
return new XPathNavigatorReader (this);
@@ -1055,6 +1054,7 @@ namespace System.Xml.XPath
}
// must override it.
+ [MonoTODO ("needs tests")]
public virtual XmlWriter CreateAttributes ()
{
throw new NotSupportedException ();