This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 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: 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
}
}