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/Mono.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/Mono.Xml.XPath')
-rw-r--r--mcs/class/System.XML/Mono.Xml.XPath/ChangeLog4
-rw-r--r--mcs/class/System.XML/Mono.Xml.XPath/XPathEditableDocument.cs4
2 files changed, 8 insertions, 0 deletions
diff --git a/mcs/class/System.XML/Mono.Xml.XPath/ChangeLog b/mcs/class/System.XML/Mono.Xml.XPath/ChangeLog
index bbe01849a08..8078a7b4ae4 100644
--- a/mcs/class/System.XML/Mono.Xml.XPath/ChangeLog
+++ b/mcs/class/System.XML/Mono.Xml.XPath/ChangeLog
@@ -1,5 +1,9 @@
2005-12-14 Atsushi Enomoto <atsushi@ximian.com>
+ * XPathEditableDocument.cs : added UnderlyingObject.
+
+2005-12-14 Atsushi Enomoto <atsushi@ximian.com>
+
* XPathEditableDocument.cs : added 2.0 SchemaInfo.
2005-12-13 Atsushi Enomoto <atsushi@ximian.com>
diff --git a/mcs/class/System.XML/Mono.Xml.XPath/XPathEditableDocument.cs b/mcs/class/System.XML/Mono.Xml.XPath/XPathEditableDocument.cs
index 894b60ead9c..75f10cfb377 100644
--- a/mcs/class/System.XML/Mono.Xml.XPath/XPathEditableDocument.cs
+++ b/mcs/class/System.XML/Mono.Xml.XPath/XPathEditableDocument.cs
@@ -483,6 +483,10 @@ namespace Mono.Xml.XPath
get { return navigator.SchemaInfo; }
}
+ public override object UnderlyingObject {
+ get { return navigator.UnderlyingObject; }
+ }
+
public override string Value {
get { return navigator.Value; }
}