e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
19 lines
918 B
C#
19 lines
918 B
C#
//------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//------------------------------------------------------------
|
|
|
|
namespace System.ServiceModel.Diagnostics
|
|
{
|
|
static class DiagnosticsTraceCode
|
|
{
|
|
// Diagnostic trace codes
|
|
public const int Diagnostics = 0X20000;
|
|
public const int AppDomainUnload = DiagnosticsTraceCode.Diagnostics | 0X0001; //
|
|
public const int EventLog = DiagnosticsTraceCode.Diagnostics | 0X0002; //
|
|
public const int ThrowingException = DiagnosticsTraceCode.Diagnostics | 0X0003; //
|
|
public const int TraceHandledException = DiagnosticsTraceCode.Diagnostics | 0X0004; //
|
|
public const int UnhandledException = DiagnosticsTraceCode.Diagnostics | 0X0005; //
|
|
public const int TraceTruncatedQuotaExceeded = DiagnosticsTraceCode.Diagnostics | 0X000C; //
|
|
}
|
|
}
|