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