/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
- //-----------------------------------------------------------------------------
- // Copyright (c) Microsoft Corporation. All rights reserved.
- //-----------------------------------------------------------------------------
-
- namespace Microsoft.Server.Common
- {
- using System.Diagnostics.CodeAnalysis;
-
- [SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", Justification = "Preserving WCF compat")]
- public enum TraceEventOpcode
- {
- Info = 0,
- Start = 1,
- Stop = 2,
- Reply = 6,
- Resume = 7,
- Suspend = 8,
- Send = 9,
- Receive = 240
- }
- }