PageRenderTime 40ms CodeModel.GetById 16ms RepoModel.GetById 1ms app.codeStats 0ms

/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
Possible License(s): CC-BY-SA-3.0, Apache-2.0
  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. }