This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
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
}
}