DataRowVersion.cs 346 B

1234567891011121314151617181920212223
  1. //
  2. // System.Data.DataRowVersion.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 a DataRow.
  13. /// </summary>
  14. [Serializable]
  15. public enum DataRowVersion
  16. {
  17. Original = 256,
  18. Current = 512,
  19. Proposed = 1024,
  20. Default = 1536
  21. }
  22. }