XPathDocumentNodeChangedAction.cs 296 B

1234567891011121314151617181920212223
  1. //
  2. // XPathDocumentNodeChangedAction.cs
  3. //
  4. // Author:
  5. // Atsushi Enomoto <[email protected]>
  6. //
  7. #if NET_2_0
  8. namespace System.Xml.XPath
  9. {
  10. public enum XPathDocumentNodeChangedAction
  11. {
  12. Deleteed,
  13. Deleteing,
  14. Inserted,
  15. Inserting,
  16. Rejected,
  17. Rejecting,
  18. Updated,
  19. Updating,
  20. }
  21. }
  22. #endif