using System;
using System.ComponentModel;
namespace System.Diagnostics
{
/// Identifies the type of event that has caused the trace.
/// 2
// Token: 0x020000FD RID: 253
public enum TraceEventType
{
/// Fatal error or application crash.
// Token: 0x040002EB RID: 747
Critical = 1,
/// Recoverable error.
// Token: 0x040002EC RID: 748
Error,
/// Noncritical problem.
// Token: 0x040002ED RID: 749
Warning = 4,
/// Informational message.
// Token: 0x040002EE RID: 750
Information = 8,
/// Debugging trace.
// Token: 0x040002EF RID: 751
Verbose = 16,
/// Starting of a logical operation.
// Token: 0x040002F0 RID: 752
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Advanced)]
Start = 256,
/// Stopping of a logical operation.
// Token: 0x040002F1 RID: 753
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Advanced)]
Stop = 512,
/// Suspension of a logical operation.
// Token: 0x040002F2 RID: 754
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Advanced)]
Suspend = 1024,
/// Resumption of a logical operation.
// Token: 0x040002F3 RID: 755
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Advanced)]
Resume = 2048,
/// Changing of correlation identity.
// Token: 0x040002F4 RID: 756
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Advanced)]
Transfer = 4096
}
}