DataRowAction.cs 1.0 KB

1234567891011121314151617181920212223
  1. //------------------------------------------------------------------------------
  2. // <copyright file="DataRowAction.cs" company="Microsoft">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. // <owner current="true" primary="true">[....]</owner>
  6. // <owner current="true" primary="false">[....]</owner>
  7. // <owner current="false" primary="false">[....]</owner>
  8. //------------------------------------------------------------------------------
  9. namespace System.Data {
  10. [Flags]
  11. public enum DataRowAction {
  12. Nothing = 0, // 0 0x00
  13. Delete = (1 << 0), // 1 0x01
  14. Change = (1 << 1), // 2 0x02
  15. Rollback = (1 << 2), // 4 0x04
  16. Commit = (1 << 3), // 8 0x08
  17. Add = (1 << 4), // 16 0x10
  18. ChangeOriginal = (1 << 5), // 32 0x20
  19. ChangeCurrentAndOriginal = (1 << 6), // 64 0x40
  20. }
  21. }