using System;
using System.ComponentModel;
namespace System.Diagnostics
{
/// Specifies the levels of trace messages filtered by the source switch and event type filter.
/// 2
// Token: 0x020000F2 RID: 242
[Flags]
public enum SourceLevels
{
/// Does not allow any events through.
// Token: 0x040002AD RID: 685
Off = 0,
/// Allows only events through.
// Token: 0x040002AE RID: 686
Critical = 1,
/// Allows and events through.
// Token: 0x040002AF RID: 687
Error = 3,
/// Allows , , and events through.
// Token: 0x040002B0 RID: 688
Warning = 7,
/// Allows , , , and events through.
// Token: 0x040002B1 RID: 689
Information = 15,
/// Allows , , , , and events through.
// Token: 0x040002B2 RID: 690
Verbose = 31,
/// Allows the , , , , and events through.
// Token: 0x040002B3 RID: 691
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Advanced)]
ActivityTracing = 65280,
/// Allows all events through.
// Token: 0x040002B4 RID: 692
All = -1
}
}