XPathDocument.cs 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. //
  2. // System.Xml.XPath.XPathDocument
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // (C) Copyright 2002 Tim Coleman
  8. //
  9. using System.IO;
  10. namespace System.Xml.XPath
  11. {
  12. public class XPathDocument : IXPathNavigable
  13. {
  14. #region Constructors
  15. [MonoTODO]
  16. public XPathDocument (Stream stream)
  17. {
  18. throw new NotImplementedException ();
  19. }
  20. [MonoTODO]
  21. public XPathDocument (string uri)
  22. {
  23. throw new NotImplementedException ();
  24. }
  25. [MonoTODO]
  26. public XPathDocument (TextReader reader)
  27. {
  28. throw new NotImplementedException ();
  29. }
  30. [MonoTODO]
  31. public XPathDocument (XmlReader reader)
  32. {
  33. throw new NotImplementedException ();
  34. }
  35. [MonoTODO]
  36. public XPathDocument (string uri, XmlSpace space)
  37. {
  38. throw new NotImplementedException ();
  39. }
  40. [MonoTODO]
  41. public XPathDocument (XmlReader reader, XmlSpace space)
  42. {
  43. throw new NotImplementedException ();
  44. }
  45. #endregion
  46. #region Methods
  47. [MonoTODO]
  48. public XPathNavigator CreateNavigator ()
  49. {
  50. throw new NotImplementedException ();
  51. }
  52. #endregion
  53. }
  54. }