Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Specifies the scheduling priority of the current Thread object (thread).
Namespace: System.Threading
Assembly: mscorlib (in mscorlib.dll)
Syntax
[SerializableAttribute]
public enum ThreadPriority
Members
Member name | Description | |
---|---|---|
Highest | A value specifying that the current thread can be scheduled before threads with any other priority. | |
AboveNormal | A value specifying that the current thread can be scheduled after threads with Highest priority and before those with Normal priority. | |
Normal | A value specifying that the current thread can be scheduled after threads with AboveNormal priority and before those with BelowNormal priority. Note that threads have Normal priority by default. | |
BelowNormal | A value specifying that the current thread can be scheduled after threads with Normal priority and before those with Lowest priority. | |
Lowest | A value specifying that the current thread can be scheduled after threads with any other priority. |
Version Information
Available in the .NET Micro Framework versions 2.0, 2.5, 3.0, 4.0, and 4.1.