DataRowState.cs 358 B

1234567891011121314151617181920212223242526
  1. //
  2. // System.Data.DataRowState.cs
  3. //
  4. // Author:
  5. // Christopher Podurgiel ([email protected])
  6. //
  7. // (C) Chris Podurgiel
  8. //
  9. namespace System.Data
  10. {
  11. /// <summary>
  12. /// Gets the state of a DataRow object.
  13. /// </summary>
  14. [Flags]
  15. [Serializable]
  16. public enum DataRowState
  17. {
  18. Detached = 1,
  19. Unchanged = 2,
  20. Added = 4,
  21. Deleted = 8,
  22. Modified = 16
  23. }
  24. }