1 //------------------------------------------------------------
2 // Copyright (c) Microsoft Corporation.  All rights reserved.
3 //------------------------------------------------------------
4 
5 namespace System.Runtime.Diagnostics
6 {
7     // Order is important here. The order must match the order of strings in src\ndp\cdf\src\WCF\EventLog\EventLog.mc
8     enum EventLogCategory : ushort
9     {
10         ServiceAuthorization = 1,  // reserved
11         MessageAuthentication,     // reserved
12         ObjectAccess,              // reserved
13         Tracing,
14         WebHost,
15         FailFast,
16         MessageLogging,
17         PerformanceCounter,
18         Wmi,
19         ComPlus,
20         StateMachine,
21         Wsat,
22         SharingService,
23         ListenerAdapter
24     }
25 
26 }