次の方法で共有


Package.PackageType プロパティ

パッケージを作成したツールを識別する値を指定します。

名前空間:  Microsoft.SqlServer.Dts.Runtime
アセンブリ:  Microsoft.SqlServer.ManagedDTS (Microsoft.SqlServer.ManagedDTS.dll)

構文

'宣言
Public Property PackageType As DTSPackageType 
    Get 
    Set
'使用
Dim instance As Package 
Dim value As DTSPackageType 

value = instance.PackageType

instance.PackageType = value
public DTSPackageType PackageType { get; set; }
public:
property DTSPackageType PackageType {
    DTSPackageType get ();
    void set (DTSPackageType value);
}
member PackageType : DTSPackageType with get, set
function get PackageType () : DTSPackageType 
function set PackageType (value : DTSPackageType)

プロパティ値

型: Microsoft.SqlServer.Dts.Runtime.DTSPackageType
パッケージを作成したツールを識別する値を指定します。

説明

パッケージが SSIS デザイナーを使用して作成されている場合、既定値は DTSDesigner100 です。

使用例

次のコード例では、1 つの SSIS サンプル パッケージのパッケージ種類を示します。

using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.SqlServer.Dts.Runtime;

namespace Package_API
{
    class Program
    {
        static void Main(string[] args)
        {
            Application app = new Application();
            Package pkg = new Package();
            pkg = app.LoadPackage(@"C:\Program Files\Microsoft SQL Server\100\Samples\Integration Services\Package Samples\CalculatedColumns Sample\CalculatedColumns\CalculatedColumns.dtsx", null);

            // Show the package type
            Console.WriteLine("The package type is {0}", pkg.PackageType);
        }
    }
}
Imports System
Imports System.Collections.Generic
Imports System.Text
Imports Microsoft.SqlServer.Dts.Runtime
 
Namespace Package_API
    Class Program
        Shared  Sub Main(ByVal args() As String)
            Dim app As Application =  New Application() 
            Dim pkg As Package =  New Package() 
            pkg = app.LoadPackage("C:\Program Files\Microsoft SQL Server\100\Samples\Integration Services\Package Samples\CalculatedColumns Sample\CalculatedColumns\CalculatedColumns.dtsx", Nothing)
 
            ' Show the package type
            Console.WriteLine("The package type is {0}", pkg.PackageType)
        End Sub
    End Class
End Namespace

サンプルの出力:

The package type is Default

関連項目

参照

Package クラス

Microsoft.SqlServer.Dts.Runtime 名前空間