e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
25 lines
1.2 KiB
C#
25 lines
1.2 KiB
C#
//----------------------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//----------------------------------------------------------------------------
|
|
namespace System.ServiceModel.Activation.Diagnostics
|
|
{
|
|
using System;
|
|
using System.Diagnostics;
|
|
using System.Runtime.Diagnostics;
|
|
using System.Collections.Generic;
|
|
|
|
static class TraceCode
|
|
{
|
|
// WebHost trace codes
|
|
public const int Activation = 0X90000;
|
|
public const int WebHostFailedToCompile = TraceCode.Activation | 0X0001;
|
|
public const int WebHostServiceActivated = TraceCode.Activation | 0X0002;
|
|
public const int WebHostFailedToActivateService = TraceCode.Activation | 0X0003;
|
|
public const int WebHostCompilation = TraceCode.Activation | 0X0004;
|
|
public const int WebHostDebugRequest = TraceCode.Activation | 0X0005;
|
|
public const int WebHostProtocolMisconfigured = TraceCode.Activation | 0X0006;
|
|
public const int WebHostServiceCloseFailed = TraceCode.Activation | 0X0007;
|
|
public const int WebHostNoCBTSupport = TraceCode.Activation | 0X0008;
|
|
}
|
|
}
|