XPathDocument2ChangedEventAction.cs 294 B

1234567891011121314151617181920212223
  1. //
  2. // XPathDocument2ChangedEventAction.cs
  3. //
  4. // Author:
  5. // Atsushi Enomoto <[email protected]>
  6. //
  7. #if NET_1_2
  8. namespace System.Xml
  9. {
  10. public enum XPathDocument2ChangedEventAction
  11. {
  12. Inserted,
  13. Removed,
  14. Changed,
  15. Inserting,
  16. Removing,
  17. Changing,
  18. Rejecting,
  19. Rejected
  20. }
  21. }
  22. #endif