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.
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Specifies the scheduling priority of a Thread.
Namespace: System.Threading
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
<SerializableAttribute> _
Public Enumeration ThreadPriority
[SerializableAttribute]
public enum ThreadPriority
[SerializableAttribute]
public enum class ThreadPriority
[<SerializableAttribute>]
type ThreadPriority
public enum ThreadPriority
Members
| Member name | Description | |
|---|---|---|
| Lowest | The Thread can be scheduled after threads with any other priority. | |
| BelowNormal | The Thread can be scheduled after threads with Normal priority and before those with Lowest priority. | |
| Normal | The Thread can be scheduled after threads with AboveNormal priority and before those with BelowNormal priority. Threads have Normal priority by default. | |
| AboveNormal | The Thread can be scheduled after threads with Highest priority and before those with Normal priority. | |
| Highest | The Thread can be scheduled before threads with any other priority. |
Remarks
ThreadPriority defines the set of all possible values for a thread priority. Thread priorities specify the relative priority of one thread versus another.
Every thread has an assigned priority. Threads created within the runtime are initially assigned the Normal priority, while threads created outside the runtime retain their previous priority when they enter the runtime. You can get and set the priority of a thread by accessing its Priority property.
Threads are scheduled for execution based on their priority. The scheduling algorithm used to determine the order of thread execution varies with each operating system. The operating system can also adjust the thread priority dynamically as the user interface's focus is moved between the foreground and the background.
The priority of a thread does not affect the thread's state; the state of the thread must be Running before the operating system can schedule it.