IXPathChangeNavigator.cs 367 B

123456789101112131415161718192021222324252627
  1. //
  2. // IXPathChangeNavigator.cs
  3. //
  4. // Author:
  5. // Atsushi Enomoto <[email protected]>
  6. //
  7. #if NET_1_2
  8. using System;
  9. using System.Collections;
  10. namespace System.Xml
  11. {
  12. public interface IXPathChangeNavigator
  13. {
  14. void AcceptChange ();
  15. void RejectChange ();
  16. IEnumerable SelectChanges (XmlChangeFilters changeType);
  17. IEnumerable SelectChanges ();
  18. }
  19. }
  20. #endif