Enum PackagePriorityClass
C#
public enum PackagePriorityClass
Fields
AboveNormal | The thread is scheduled after threads with Default priority and before those with Normal priority. |
BelowNormal | The thread is scheduled after threads with Default, AboveNormal, and Normal priority and before those with Lowest priority. |
Default | The thread is scheduled before threads with any other priority. This is the highest thread priority. |
Idle | This thread is scheduled after threads with any other priority. |
Normal | The thread is scheduled after threads with Default and AboveNormal priority, and before those with BelowNormal and Lowest priority. |