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.XPath/XPathDocument.cs')
-rw-r--r--mcs/class/System.XML/System.Xml.XPath/XPathDocument.cs66
1 files changed, 0 insertions, 66 deletions
diff --git a/mcs/class/System.XML/System.Xml.XPath/XPathDocument.cs b/mcs/class/System.XML/System.Xml.XPath/XPathDocument.cs
deleted file mode 100644
index c3b8c18401f..00000000000
--- a/mcs/class/System.XML/System.Xml.XPath/XPathDocument.cs
+++ /dev/null
@@ -1,66 +0,0 @@
-//
-// System.Xml.XPath.XPathDocument
-//
-// Author:
-// Tim Coleman (tim@timcoleman.com)
-//
-// (C) Copyright 2002 Tim Coleman
-//
-
-using System.IO;
-
-namespace System.Xml.XPath
-{
- public class XPathDocument : IXPathNavigable
- {
- #region Constructors
-
- [MonoTODO]
- public XPathDocument (Stream stream)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public XPathDocument (string uri)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public XPathDocument (TextReader reader)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public XPathDocument (XmlReader reader)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public XPathDocument (string uri, XmlSpace space)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public XPathDocument (XmlReader reader, XmlSpace space)
- {
- throw new NotImplementedException ();
- }
-
- #endregion
-
- #region Methods
-
- [MonoTODO]
- public XPathNavigator CreateNavigator ()
- {
- throw new NotImplementedException ();
- }
-
- #endregion
- }
-}