ProcessThread.CurrentPriority Property

Definition

Gets the current priority of the thread.

public:
 property int CurrentPriority { int get(); };
public int CurrentPriority { get; }
member this.CurrentPriority : int
Public ReadOnly Property CurrentPriority As Integer

Property Value

The current priority of the thread, which may deviate from the base priority based on how the operating system is scheduling the thread. The priority may be temporarily boosted for an active thread.

Remarks

The thread's current priority might deviate from the base priority. For example, the operating system can change the CurrentPriority property based on the time elapsed, or other boosts, when a process must be put ahead of others for access to the processor. In addition, you can set the PriorityBoostEnabled property to cause the system to temporarily boost the priority of a thread whenever the process is taken out of the wait state. The priority is reset when the process returns to the wait state.

Applies to

See also