SqlNotificationSource.cs 905 B

123456789101112131415161718192021222324252627
  1. //------------------------------------------------------------------------------
  2. // <copyright file="SqlNotificationSource.cs" company="Microsoft">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. // <owner current="true" primary="true">mithomas</owner>
  6. // <owner current="true" primary="false">blained</owner>
  7. // <owner current="false" primary="false">ramp</owner>
  8. //------------------------------------------------------------------------------
  9. namespace System.Data.SqlClient {
  10. public enum SqlNotificationSource {
  11. Data = 0,
  12. Timeout = 1,
  13. Object = 2,
  14. Database = 3,
  15. System = 4,
  16. Statement = 5,
  17. Environment = 6,
  18. Execution = 7,
  19. Owner = 8,
  20. // use negative values for client-only-generated values
  21. Unknown = -1,
  22. Client = -2
  23. }
  24. }