Compartir a través de


Package.PackagePriorityClass Property

Specifies the Win32 thread priority class of the package thread.

Espacio de nombres: Microsoft.SqlServer.Dts.Runtime
Ensamblado: Microsoft.SqlServer.ManagedDTS (in microsoft.sqlserver.manageddts.dll)

Sintaxis

'Declaración
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)

Valor de propiedad

A value from the DTSPriorityClass enumeration.

Ejemplo

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

Seguridad para subprocesos

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.

Plataformas

Plataformas de desarrollo

Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.

Plataformas de destino

Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.

Vea también

Referencia

Package Class
Package Members
Microsoft.SqlServer.Dts.Runtime Namespace