1 //------------------------------------------------------------
2 // Copyright (c) Microsoft Corporation.  All rights reserved.
3 //------------------------------------------------------------
4 
5 namespace System.ServiceModel.Diagnostics
6 {
7     // FUTURE: This class is kept so that 4.0 Extended SKU runs fine on 4.5 Client. Will remove this in the future.
8     // Order is important here. The order must match the order of strings in ..\EventLog\EventLog.mc
9     [Obsolete("This has been replaced by System.Runtime.Diagnostics.EventLogCategory")]
10     enum EventLogCategory : ushort
11     {
12         ServiceAuthorization = 1,  // reserved
13         MessageAuthentication,     // reserved
14         ObjectAccess,              // reserved
15         Tracing,
16         WebHost,
17         FailFast,
18         MessageLogging,
19         PerformanceCounter,
20         Wmi,
21         ComPlus,
22         StateMachine,
23         Wsat,
24         SharingService,
25         ListenerAdapter
26     }
27 
28 }