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: 0x020006C3 RID: 1731
|
|
[Token(Token = "0x20006C3")]
|
|
public enum EventLevel
|
|
{
|
|
/// <summary>No level filtering is done on the event.</summary>
|
|
// Token: 0x04001CB4 RID: 7348
|
|
[Token(Token = "0x4001CB4")]
|
|
LogAlways,
|
|
/// <summary>This level corresponds to a critical error, which is a serious error that has caused a major failure.</summary>
|
|
// Token: 0x04001CB5 RID: 7349
|
|
[Token(Token = "0x4001CB5")]
|
|
Critical,
|
|
/// <summary>This level adds standard errors that signify a problem.</summary>
|
|
// Token: 0x04001CB6 RID: 7350
|
|
[Token(Token = "0x4001CB6")]
|
|
Error,
|
|
/// <summary>This level adds warning events (for example, events that are published because a disk is nearing full capacity).</summary>
|
|
// Token: 0x04001CB7 RID: 7351
|
|
[Token(Token = "0x4001CB7")]
|
|
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: 0x04001CB8 RID: 7352
|
|
[Token(Token = "0x4001CB8")]
|
|
Informational,
|
|
/// <summary>This level adds lengthy events or messages. It causes all events to be logged.</summary>
|
|
// Token: 0x04001CB9 RID: 7353
|
|
[Token(Token = "0x4001CB9")]
|
|
Verbose
|
|
}
|
|
}
|