ConnectionState.cs 644 B

1234567891011121314151617181920
  1. //------------------------------------------------------------------------------
  2. // <copyright file="ConnectionState.cs" company="Microsoft">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. // <owner current="true" primary="true">[....]</owner>
  6. // <owner current="true" primary="false">[....]</owner>
  7. //------------------------------------------------------------------------------
  8. namespace System.Data {
  9. [Flags()]
  10. public enum ConnectionState {
  11. Closed = 0,
  12. Open = 1,
  13. Connecting = 2,
  14. Executing = 4,
  15. Fetching = 8,
  16. Broken = 16,
  17. }
  18. }