IXPathChangeNavigable.cs 276 B

1234567891011121314151617181920
  1. //
  2. // IXPathChangeNavigable.cs
  3. //
  4. // Author:
  5. // Atsushi Enomoto <[email protected]>
  6. //
  7. #if NET_2_0
  8. using System;
  9. using System.Collections;
  10. namespace System.Xml.XPath
  11. {
  12. public interface IXPathChangeNavigable
  13. {
  14. XPathChangeNavigator CreateChangeNavigator ();
  15. }
  16. }
  17. #endif