UpdateStatus.cs 383 B

12345678910111213141516171819202122
  1. //
  2. // System.Data.UpdateStatus.cs
  3. //
  4. // Author:
  5. // Christopher Podurgiel ([email protected])
  6. //
  7. // (C) Chris Podurgiel
  8. //
  9. namespace System.Data
  10. {
  11. /// <summary>
  12. /// Specifies the action to take with regard to the current and remaining rows during an Update.
  13. /// </summary>
  14. public enum UpdateStatus
  15. {
  16. Continue,
  17. ErrorsOccurred,
  18. SkipAllRemainingRows,
  19. SkipCurrentRow
  20. }
  21. }