UpdateRowSource.cs 588 B

123456789101112131415161718192021
  1. //------------------------------------------------------------------------------
  2. // <copyright file="UpdateRowSource.cs" company="Microsoft">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. // <owner current="true" primary="true">markash</owner>
  6. // <owner current="true" primary="false">laled</owner>
  7. //------------------------------------------------------------------------------
  8. namespace System.Data {
  9. public enum UpdateRowSource {
  10. None = 0,
  11. OutputParameters = 1,
  12. FirstReturnedRecord = 2,
  13. Both = 3,
  14. }
  15. }