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: 0x020000C3 RID: 195
|
|
[Token(Token = "0x20000C3")]
|
|
public enum TraceLevel
|
|
{
|
|
/// <summary>Output no tracing and debugging messages.</summary>
|
|
// Token: 0x04000387 RID: 903
|
|
[Token(Token = "0x4000387")]
|
|
Off,
|
|
/// <summary>Output error-handling messages.</summary>
|
|
// Token: 0x04000388 RID: 904
|
|
[Token(Token = "0x4000388")]
|
|
Error,
|
|
/// <summary>Output warnings and error-handling messages.</summary>
|
|
// Token: 0x04000389 RID: 905
|
|
[Token(Token = "0x4000389")]
|
|
Warning,
|
|
/// <summary>Output informational messages, warnings, and error-handling messages.</summary>
|
|
// Token: 0x0400038A RID: 906
|
|
[Token(Token = "0x400038A")]
|
|
Info,
|
|
/// <summary>Output all debugging and tracing messages.</summary>
|
|
// Token: 0x0400038B RID: 907
|
|
[Token(Token = "0x400038B")]
|
|
Verbose
|
|
}
|
|
}
|