37 lines
1.3 KiB
C#
37 lines
1.3 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Diagnostics.Tracing
|
|
{
|
|
/// <summary>Identifies the level of an event.</summary>
|
|
// Token: 0x020006A2 RID: 1698
|
|
[Token(Token = "0x20006A2")]
|
|
public enum EventLevel
|
|
{
|
|
/// <summary>No level filtering is done on the event.</summary>
|
|
// Token: 0x04001BF1 RID: 7153
|
|
[Token(Token = "0x4001BF1")]
|
|
LogAlways,
|
|
/// <summary>This level corresponds to a critical error, which is a serious error that has caused a major failure.</summary>
|
|
// Token: 0x04001BF2 RID: 7154
|
|
[Token(Token = "0x4001BF2")]
|
|
Critical,
|
|
/// <summary>This level adds standard errors that signify a problem.</summary>
|
|
// Token: 0x04001BF3 RID: 7155
|
|
[Token(Token = "0x4001BF3")]
|
|
Error,
|
|
/// <summary>This level adds warning events (for example, events that are published because a disk is nearing full capacity).</summary>
|
|
// Token: 0x04001BF4 RID: 7156
|
|
[Token(Token = "0x4001BF4")]
|
|
Warning,
|
|
/// <summary>This level adds informational events or messages that are not errors. These events can help trace the progress or state of an application.</summary>
|
|
// Token: 0x04001BF5 RID: 7157
|
|
[Token(Token = "0x4001BF5")]
|
|
Informational,
|
|
/// <summary>This level adds lengthy events or messages. It causes all events to be logged.</summary>
|
|
// Token: 0x04001BF6 RID: 7158
|
|
[Token(Token = "0x4001BF6")]
|
|
Verbose
|
|
}
|
|
}
|