DataRowState.cs 312 B

123456789101112131415161718192021222324
  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. public enum DataRowState
  15. {
  16. Added,
  17. Deleted,
  18. Detached,
  19. Modified,
  20. Unchanged
  21. }
  22. }