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