Package.PackagePriorityClass プロパティ

定義

パッケージ スレッドの Win32 スレッド優先度クラスを指定します。

public:
 property Microsoft::SqlServer::Dts::Runtime::DTSPriorityClass PackagePriorityClass { Microsoft::SqlServer::Dts::Runtime::DTSPriorityClass get(); void set(Microsoft::SqlServer::Dts::Runtime::DTSPriorityClass value); };
[Microsoft.SqlServer.Dts.Runtime.Localization.LocalizablePropertyCategory(typeof(Microsoft.SqlServer.Dts.Runtime.Localized), "PropertyCategoryExecution")]
[Microsoft.SqlServer.Dts.Runtime.Localization.LocalizablePropertyDescription(typeof(Microsoft.SqlServer.Dts.Runtime.Localized), "PackagePriorityClassDesc")]
public Microsoft.SqlServer.Dts.Runtime.DTSPriorityClass PackagePriorityClass { get; set; }
[<Microsoft.SqlServer.Dts.Runtime.Localization.LocalizablePropertyCategory(typeof(Microsoft.SqlServer.Dts.Runtime.Localized), "PropertyCategoryExecution")>]
[<Microsoft.SqlServer.Dts.Runtime.Localization.LocalizablePropertyDescription(typeof(Microsoft.SqlServer.Dts.Runtime.Localized), "PackagePriorityClassDesc")>]
member this.PackagePriorityClass : Microsoft.SqlServer.Dts.Runtime.DTSPriorityClass with get, set
Public Property PackagePriorityClass As DTSPriorityClass

プロパティ値

DTSPriorityClass

パッケージ スレッドの Win32 スレッド優先度クラスを示します。

属性

次の例では、PackagePriorityClass を設定するときに使用する構文を示しています。

Package p = new Package();  
p.PackagePriorityClass = DTSPriorityClass.BelowNormal;  
Dim p As Package =  New Package()   
p.PackagePriorityClass = DTSPriorityClass.BelowNormal  

適用対象