SqlNotificationInfo.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. //------------------------------------------------------------------------------
  2. // <copyright file="SqlNotificationInfo.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="true">ramp</owner>
  8. //------------------------------------------------------------------------------
  9. namespace System.Data.SqlClient {
  10. public enum SqlNotificationInfo {
  11. Truncate = 0,
  12. Insert = 1,
  13. Update = 2,
  14. Delete = 3,
  15. Drop = 4,
  16. Alter = 5,
  17. Restart = 6,
  18. Error = 7,
  19. Query = 8,
  20. Invalid = 9,
  21. Options = 10,
  22. Isolation = 11,
  23. Expired = 12,
  24. Resource = 13,
  25. PreviousFire = 14,
  26. TemplateLimit = 15,
  27. Merge = 16,
  28. // use negative values for client-only-generated values
  29. Unknown = -1,
  30. AlreadyChanged = -2
  31. }
  32. }