次の方法で共有


DTSPropertyKind Enumeration

プロパティの種類を表す値を格納します。

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

構文

'宣言
Public Enumeration DTSPropertyKind
public enum DTSPropertyKind
public enum class DTSPropertyKind
public enum DTSPropertyKind
public enum DTSPropertyKind

メンバ

メンバ名 説明
Connection このプロパティは接続です。
Other このプロパティは使用可能な列挙子で表すことができません。
Sensitive このプロパティは機密情報です。
VariableReadOnly このプロパティは読み取り専用変数です。
VariableReadWrite このプロパティは読み取り/書き込み変数です。

使用例

次のコード サンプルは、特定のプロパティの種類を取得する方法を示しています。

static void Main(string[] args)
    {
        // The variable pkg points to the location
        // of the ExecuteProcess package sample 
        // that is installed with the SSIS samples.
        string packageFile = @"C:\Program Files\Microsoft SQL Server\90\Samples\Integration Services\Package Samples\ExecuteProcess Sample\ExecuteProcess\UsingExecuteProcess.dtsx";

        Application application = new Application();
        Package package = application.LoadPackage(packageFile, null);

        // Retrieve the information from the Properties collection.
        // Each item in the collection represents a property on the
        // object. This example reviews the properties of the 
        // Package object.

        DtsProperties properties = package.Properties;

        String propertyName;
        DTSPropertyKind propertyKind;
        String packagePath;
        TypeCode propertyType;

        foreach (DtsProperty property in properties)
        {
            propertyType = property.Type;
            propertyName = property.Name;
            propertyKind = property.PropertyKind;
            packagePath = property.GetPackagePath(package);
            Console.WriteLine("Property Type: {0}, Property Name: {1}, Property Kind: {2}, Package Path: {3} ", 
            propertyType, propertyName, propertyKind, packagePath);
        }
    }
Shared  Sub Main(ByVal args() As String)
        ' The variable pkg points to the location
        ' of the ExecuteProcess package sample 
        ' that is installed with the SSIS samples.
        Dim packageFile As String =  "C:\Program Files\Microsoft SQL Server\90\Samples\Integration Services\Package Samples\ExecuteProcess Sample\ExecuteProcess\UsingExecuteProcess.dtsx" 
 
        Dim application As Application =  New Application() 
        Dim package As Package =  application.LoadPackage(packageFile,Nothing) 
 
        ' Retrieve the information from the Properties collection.
        ' Each item in the collection represents a property on the
        ' object. This example reviews the properties of the 
        ' Package object.
 
        Dim properties As DtsProperties = package.Properties 
 
        Dim propertyName As String
        Dim propertyKind As DTSPropertyKind
        Dim packagePath As String
        Dim propertyType As TypeCode
 
        Dim property As DtsProperty
        For Each property In properties
            propertyType = property.Type
            propertyName = property.Name
            propertyKind = property.PropertyKind
            packagePath = property.GetPackagePath(package)
            Console.WriteLine("Property Type: {0}, Property Name: {1}, Property Kind: {2}, Package Path: {3} ", 
            propertyType, propertyName, propertyKind, packagePath)
        Next
End Sub

プラットフォーム

開発プラットフォーム

サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。

対象プラットフォーム

サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。

参照

関連項目

Microsoft.SqlServer.Dts.Runtime Namespace