27 lines
926 B
C#
27 lines
926 B
C#
using System;
|
|
|
|
namespace System.Diagnostics
|
|
{
|
|
/// <summary>Specifies what messages to output for the <see cref="T:System.Diagnostics.Debug" />, <see cref="T:System.Diagnostics.Trace" /> and <see cref="T:System.Diagnostics.TraceSwitch" /> classes.</summary>
|
|
/// <filterpriority>2</filterpriority>
|
|
// Token: 0x02000101 RID: 257
|
|
public enum TraceLevel
|
|
{
|
|
/// <summary>Output no tracing and debugging messages.</summary>
|
|
// Token: 0x04000302 RID: 770
|
|
Off,
|
|
/// <summary>Output error-handling messages.</summary>
|
|
// Token: 0x04000303 RID: 771
|
|
Error,
|
|
/// <summary>Output warnings and error-handling messages.</summary>
|
|
// Token: 0x04000304 RID: 772
|
|
Warning,
|
|
/// <summary>Output informational messages, warnings, and error-handling messages.</summary>
|
|
// Token: 0x04000305 RID: 773
|
|
Info,
|
|
/// <summary>Output all debugging and tracing messages.</summary>
|
|
// Token: 0x04000306 RID: 774
|
|
Verbose
|
|
}
|
|
}
|