UpdateRowSource.cs 404 B

12345678910111213141516171819202122232425
  1. //
  2. // System.Data.UpdateRowSource.cs
  3. //
  4. // Author:
  5. // Christopher Podurgiel ([email protected])
  6. //
  7. // (C) Chris Podurgiel
  8. //
  9. using System;
  10. namespace System.Data
  11. {
  12. /// <summary>
  13. /// Specifies how query command results are applied to the row being updated.
  14. /// </summary>
  15. [Serializable]
  16. public enum UpdateRowSource
  17. {
  18. None = 0,
  19. OutputParameters = 1,
  20. FirstReturnedRecord = 2,
  21. Both = 3
  22. }
  23. }