DataRowAction.cs 421 B

1234567891011121314151617181920212223242526
  1. //
  2. // System.Data.DataRowAction.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 action taken on a DataRow.
  13. /// This enumeration has a FlagsAttribute that allows a bitwise combination of its member values.
  14. /// </summary>
  15. public enum DataRowAction
  16. {
  17. Add,
  18. Change,
  19. Commit,
  20. Delete,
  21. Nothing,
  22. Rollback
  23. }
  24. }