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:
Diffstat (limited to 'mcs/class/System.XML/System.Xml/XmlDocumentNavigator.cs')
-rw-r--r--mcs/class/System.XML/System.Xml/XmlDocumentNavigator.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/mcs/class/System.XML/System.Xml/XmlDocumentNavigator.cs b/mcs/class/System.XML/System.Xml/XmlDocumentNavigator.cs
index 3ee415ddc45..bdd44a165f6 100644
--- a/mcs/class/System.XML/System.Xml/XmlDocumentNavigator.cs
+++ b/mcs/class/System.XML/System.Xml/XmlDocumentNavigator.cs
@@ -168,10 +168,9 @@ namespace System.Xml
#region Methods
- [MonoTODO]
public override XPathNavigator Clone ()
{
- throw new NotImplementedException ();
+ return new XmlDocumentNavigator (node);
}
[MonoTODO]
@@ -305,6 +304,8 @@ namespace System.Xml
node = node.OwnerDocument;
}
+ internal XmlNode Node { get { return node; } }
+
#endregion
}
}