2
0

DataViewRowState.cs 480 B

123456789101112131415161718192021222324252627
  1. //
  2. // System.Data.DataViewRowState.cs
  3. //
  4. // Author:
  5. // Christopher Podurgiel ([email protected])
  6. //
  7. // (C) Chris Podurgiel
  8. //
  9. namespace System.Data
  10. {
  11. /// <summary>
  12. /// Describes the version of data in a DataRow.
  13. /// This enumeration has a FlagsAttribute that allows a bitwise combination of its member values.
  14. /// </summary>
  15. public enum DataViewRowState
  16. {
  17. Added,
  18. CurrentRows,
  19. Deleted,
  20. ModifiedCurrent,
  21. ModifiedOriginal,
  22. None,
  23. OriginalRows,
  24. Unchanged
  25. }
  26. }