ProcessThread::PriorityLevel Property
.NET Framework (current version)
Gets or sets the priority level of the thread.
Assembly: System (in System.dll)
public: property ThreadPriorityLevel PriorityLevel { ThreadPriorityLevel get(); void set(ThreadPriorityLevel value); }
Property Value
Type: System.Diagnostics::ThreadPriorityLevelOne of the ThreadPriorityLevel values, specifying a range that bounds the thread's priority.
| Exception | Condition |
|---|---|
| Win32Exception | The thread priority level information could not be retrieved. -or- The thread priority level could not be set. |
| PlatformNotSupportedException | The platform is Windows 98 or Windows Millennium Edition. |
| NotSupportedException | The process is on a remote computer. |
The priority level is not a single value, but rather a range of values. The operating system computes the thread's base priority by using the process's PriorityClass to choose a value from the range specified in the PriorityLevel property.
.NET Framework
Available since 1.1
Available since 1.1
Show: