using System; namespace System.Diagnostics { /// Specifies the priority level of a thread. /// 2 // Token: 0x020000F8 RID: 248 public enum ThreadPriorityLevel { /// Specifies one step above the normal priority for the associated . // Token: 0x040002C5 RID: 709 AboveNormal = 1, /// Specifies one step below the normal priority for the associated . // Token: 0x040002C6 RID: 710 BelowNormal = -1, /// Specifies highest priority. This is two steps above the normal priority for the associated . // Token: 0x040002C7 RID: 711 Highest = 2, /// Specifies idle priority. This is the lowest possible priority value of all threads, independent of the value of the associated . // Token: 0x040002C8 RID: 712 Idle = -15, /// Specifies lowest priority. This is two steps below the normal priority for the associated . // Token: 0x040002C9 RID: 713 Lowest = -2, /// Specifies normal priority for the associated . // Token: 0x040002CA RID: 714 Normal = 0, /// Specifies time-critical priority. This is the highest priority of all threads, independent of the value of the associated . // Token: 0x040002CB RID: 715 TimeCritical = 15 } }