| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- //
- // System.Xml.XPath.XPathDocument
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // (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
- }
- }
|