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 11:36:22 +0300
committerAtsushi Eno <atsushieno@gmail.com>2005-12-14 11:36:22 +0300
commit260014cbd309760c06d1e17b88e28285d80b6b1d (patch)
treec14360d24666acb52c2466ef0438b3215494f8b1 /mcs/class/System.XML/System.Xml.XPath
parent5392ed3dbb3fa737b91318b549a3635e408c7562 (diff)
2005-12-14 Atsushi Enomoto <atsushi@ximian.com>
Added UnderlyingObject support. svn path=/trunk/mcs/; revision=54353
Diffstat (limited to 'mcs/class/System.XML/System.Xml.XPath')
-rw-r--r--mcs/class/System.XML/System.Xml.XPath/ChangeLog4
-rw-r--r--mcs/class/System.XML/System.Xml.XPath/XPathNavigator.cs4
2 files changed, 5 insertions, 3 deletions
diff --git a/mcs/class/System.XML/System.Xml.XPath/ChangeLog b/mcs/class/System.XML/System.Xml.XPath/ChangeLog
index ac73bb0c65e..1ce990609c0 100644
--- a/mcs/class/System.XML/System.Xml.XPath/ChangeLog
+++ b/mcs/class/System.XML/System.Xml.XPath/ChangeLog
@@ -1,3 +1,7 @@
+2005-12-14 Atsushi Enomoto <atsushi@ximian.com>
+
+ * XPathNavigator.cs : UnderlyingObject returns null by default.
+
2005-12-13 Atsushi Enomoto <atsushi@ximian.com>
* XPathNavigator.cs : Reimplemented MoveToFollowing() to avoid
diff --git a/mcs/class/System.XML/System.Xml.XPath/XPathNavigator.cs b/mcs/class/System.XML/System.Xml.XPath/XPathNavigator.cs
index ec8831684fe..0b24319ca73 100644
--- a/mcs/class/System.XML/System.Xml.XPath/XPathNavigator.cs
+++ b/mcs/class/System.XML/System.Xml.XPath/XPathNavigator.cs
@@ -903,7 +903,6 @@ namespace System.Xml.XPath
}
}
- [MonoTODO]
public override bool IsNode {
get { return true; }
}
@@ -955,9 +954,8 @@ namespace System.Xml.XPath
}
}
- [MonoTODO]
public virtual object UnderlyingObject {
- get { throw new NotImplementedException (); }
+ get { return null; }
}
public override bool ValueAsBoolean {