using System; namespace System.Diagnostics { /// Indicates the priority that the system associates with a process. This value, together with the priority value of each thread of the process, determines each thread's base priority level. /// 2 // Token: 0x020000EC RID: 236 public enum ProcessPriorityClass { /// Specifies that the process has priority above but below . // Token: 0x0400028C RID: 652 AboveNormal = 32768, /// Specifies that the process has priority above but below . // Token: 0x0400028D RID: 653 BelowNormal = 16384, /// Specifies that the process performs time-critical tasks that must be executed immediately, such as the Task List dialog, which must respond quickly when called by the user, regardless of the load on the operating system. The threads of the process preempt the threads of normal or idle priority class processes. // Token: 0x0400028E RID: 654 High = 128, /// Specifies that the threads of this process run only when the system is idle, such as a screen saver. The threads of the process are preempted by the threads of any process running in a higher priority class. // Token: 0x0400028F RID: 655 Idle = 64, /// Specifies that the process has no special scheduling needs. // Token: 0x04000290 RID: 656 Normal = 32, /// Specifies that the process has the highest possible priority. // Token: 0x04000291 RID: 657 RealTime = 256 } }