ProcessThread.PriorityLevel 属性

获取或设置线程的优先级别。

**命名空间:**System.Diagnostics
**程序集:**System(在 system.dll 中)

语法

声明
Public Property PriorityLevel As ThreadPriorityLevel
用法
Dim instance As ProcessThread
Dim value As ThreadPriorityLevel

value = instance.PriorityLevel

instance.PriorityLevel = value
public ThreadPriorityLevel PriorityLevel { get; set; }
public:
property ThreadPriorityLevel PriorityLevel {
    ThreadPriorityLevel get ();
    void set (ThreadPriorityLevel value);
}
/** @property */
public ThreadPriorityLevel get_PriorityLevel ()

/** @property */
public void set_PriorityLevel (ThreadPriorityLevel value)
public function get PriorityLevel () : ThreadPriorityLevel

public function set PriorityLevel (value : ThreadPriorityLevel)

属性值

ThreadPriorityLevel 值之一,它指定限制线程优先级的范围。

异常

异常类型 条件

Win32Exception

未能检索到线程优先级别信息。

- 或 -

未能设置线程优先级别。

PlatformNotSupportedException

平台为 Windows 98 或 Windows Millennium Edition。

NotSupportedException

进程在远程计算机上。

备注

优先级别不是单个值,而是一组值。操作系统计算线程的基本优先级的方法是:使用进程的 PriorityClassPriorityLevel 属性指定的范围中选择一个值。

平台

Windows 2000 SP4、Windows Server 2003、Windows XP Media Center Edition、Windows XP Professional x64 Edition、Windows XP SP2、Windows XP Starter Edition

.NET Framework 并不是对每个平台的所有版本都提供支持。有关受支持版本的列表,请参见系统要求

版本信息

.NET Framework

受以下版本支持:2.0、1.1、1.0

请参见

参考

ProcessThread 类
ProcessThread 成员
System.Diagnostics 命名空间
ThreadPriorityLevel
Process.PriorityClass 属性
ProcessThread.BasePriority 属性
ProcessThread.CurrentPriority 属性