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.
Specifies the Win32 thread priority class of the package thread.
Namespace: Microsoft.SqlServer.Dts.Runtime
Assembly: Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)
Syntax
'Declaration
Public Property PackagePriorityClass As DTSPriorityClass
Get
Set
'Usage
Dim instance As Package
Dim value As DTSPriorityClass
value = instance.PackagePriorityClass
instance.PackagePriorityClass = value
public DTSPriorityClass PackagePriorityClass { get; set; }
public:
property DTSPriorityClass PackagePriorityClass {
DTSPriorityClass get ();
void set (DTSPriorityClass value);
}
member PackagePriorityClass : DTSPriorityClass with get, set
function get PackagePriorityClass () : DTSPriorityClass
function set PackagePriorityClass (value : DTSPriorityClass)
Property Value
Type: Microsoft.SqlServer.Dts.Runtime.DTSPriorityClass
The Win32 thread priority class of the package thread.
Examples
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