/WCFWebApi/src/Microsoft.Server.Common/Microsoft/Server/Common/TraceEventOpcode.cs

# · C# · 21 lines · 16 code · 2 blank · 3 comment · 0 complexity · c7ff913913c745fc30f8b64ba8e314f2 MD5 · raw file

  1. //-----------------------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //-----------------------------------------------------------------------------
  4. namespace Microsoft.Server.Common
  5. {
  6. using System.Diagnostics.CodeAnalysis;
  7. [SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", Justification = "Preserving WCF compat")]
  8. public enum TraceEventOpcode
  9. {
  10. Info = 0,
  11. Start = 1,
  12. Stop = 2,
  13. Reply = 6,
  14. Resume = 7,
  15. Suspend = 8,
  16. Send = 9,
  17. Receive = 240
  18. }
  19. }