// // 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 } }