XPathNodeIterator.cs 752 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. //
  2. // System.Xml.XPath.XPathNodeIterator
  3. //
  4. // Author:
  5. // Jason Diamond ([email protected])
  6. //
  7. // (C) 2002 Jason Diamond http://injektilo.org/
  8. //
  9. using System;
  10. namespace System.Xml.XPath
  11. {
  12. public abstract class XPathNodeIterator : ICloneable
  13. {
  14. #region Constructor
  15. protected XPathNodeIterator ()
  16. {
  17. }
  18. #endregion
  19. #region Properties
  20. [MonoTODO]
  21. public virtual int Count {
  22. get {
  23. throw new NotImplementedException ();
  24. }
  25. }
  26. public abstract XPathNavigator Current { get; }
  27. public abstract int CurrentPosition { get; }
  28. #endregion
  29. #region Methods
  30. public abstract XPathNodeIterator Clone ();
  31. object ICloneable.Clone ()
  32. {
  33. return Clone ();
  34. }
  35. public abstract bool MoveNext ();
  36. #endregion
  37. }
  38. }