38 lines
1.7 KiB
C#
38 lines
1.7 KiB
C#
|
//-----------------------------------------------------------------------------
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
//-----------------------------------------------------------------------------
|
||
|
|
||
|
namespace System.Runtime
|
||
|
{
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
|
||
|
static class DiagnosticStrings
|
||
|
{
|
||
|
internal const string AppDomain = "AppDomain";
|
||
|
internal const string ChannelTag = "Channel";
|
||
|
internal const string Description = "Description";
|
||
|
internal const string DataTag = "Data";
|
||
|
internal const string DataItemsTag = "DataItems";
|
||
|
internal const string DescriptionTag = "Description";
|
||
|
internal const string ExceptionTag = "Exception";
|
||
|
internal const string ExceptionTypeTag = "ExceptionType";
|
||
|
internal const string ExceptionStringTag = "ExceptionString";
|
||
|
internal const string ExtendedDataTag = "ExtendedData";
|
||
|
internal const string InnerExceptionTag = "InnerException";
|
||
|
internal const string KeyTag = "Key";
|
||
|
internal const string MessageTag = "Message";
|
||
|
internal const string NamespaceTag = "xmlns";
|
||
|
internal const string NativeErrorCodeTag = "NativeErrorCode";
|
||
|
internal const string Separator = ":";
|
||
|
internal const string SeverityTag = "Severity";
|
||
|
internal const string SourceTag = "Source";
|
||
|
internal const string StackTraceTag = "StackTrace";
|
||
|
internal const string Task = "Task";
|
||
|
internal const string TraceCodeTag = "TraceIdentifier";
|
||
|
internal const string TraceRecordTag = "TraceRecord";
|
||
|
internal const string ValueTag = "Value";
|
||
|
}
|
||
|
}
|