33 lines
1.1 KiB
C#
33 lines
1.1 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
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>
|
|
// Token: 0x020000BF RID: 191
|
|
[Token(Token = "0x20000BF")]
|
|
public enum TraceLevel
|
|
{
|
|
/// <summary>Output no tracing and debugging messages.</summary>
|
|
// Token: 0x0400037A RID: 890
|
|
[Token(Token = "0x400037A")]
|
|
Off,
|
|
/// <summary>Output error-handling messages.</summary>
|
|
// Token: 0x0400037B RID: 891
|
|
[Token(Token = "0x400037B")]
|
|
Error,
|
|
/// <summary>Output warnings and error-handling messages.</summary>
|
|
// Token: 0x0400037C RID: 892
|
|
[Token(Token = "0x400037C")]
|
|
Warning,
|
|
/// <summary>Output informational messages, warnings, and error-handling messages.</summary>
|
|
// Token: 0x0400037D RID: 893
|
|
[Token(Token = "0x400037D")]
|
|
Info,
|
|
/// <summary>Output all debugging and tracing messages.</summary>
|
|
// Token: 0x0400037E RID: 894
|
|
[Token(Token = "0x400037E")]
|
|
Verbose
|
|
}
|
|
}
|