Package.PackagePriorityClass Property
Specifies the Win32 thread priority class of the package thread.
Пространство имен: Microsoft.SqlServer.Dts.Runtime
Сборка: Microsoft.SqlServer.ManagedDTS (in microsoft.sqlserver.manageddts.dll)
Синтаксис
'Декларация
Public Property PackagePriorityClass As DTSPriorityClass
public DTSPriorityClass PackagePriorityClass { get; set; }
public:
property DTSPriorityClass PackagePriorityClass {
DTSPriorityClass get ();
void set (DTSPriorityClass value);
}
/** @property */
public DTSPriorityClass get_PackagePriorityClass ()
/** @property */
public void set_PackagePriorityClass (DTSPriorityClass value)
public function get PackagePriorityClass () : DTSPriorityClass
public function set PackagePriorityClass (value : DTSPriorityClass)
Значение свойства
A value from the DTSPriorityClass enumeration.
Пример
The following example shows the syntax to use when setting the PackagePriorityClass.
Package p = new Package();
p.PackagePriorityClass = DTSPriorityClass.BelowNormal;
Dim p As Package = New Package()
p.PackagePriorityClass = DTSPriorityClass.BelowNormal
Синхронизация потоков
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Платформы
Платформы разработки
Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.
Целевые платформы
Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.
См. также
Справочник
Package Class
Package Members
Microsoft.SqlServer.Dts.Runtime Namespace