次の方法で共有


TaskHost.HostType プロパティ

コンテナーのホストを示す値を DTSObjectHostType 列挙から取得します。 このプロパティは読み取り専用です。

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

構文

'宣言
<BrowsableAttribute(False)> _
Public ReadOnly Property HostType As DTSObjectHostType 
    Get
'使用
Dim instance As TaskHost 
Dim value As DTSObjectHostType 

value = instance.HostType
[BrowsableAttribute(false)]
public DTSObjectHostType HostType { get; }
[BrowsableAttribute(false)]
public:
virtual property DTSObjectHostType HostType {
    DTSObjectHostType get () sealed;
}
[<BrowsableAttribute(false)>]
abstract HostType : DTSObjectHostType
[<BrowsableAttribute(false)>]
override HostType : DTSObjectHostType
final function get HostType () : DTSObjectHostType

プロパティ値

型: Microsoft.SqlServer.Dts.Runtime.DTSObjectHostType
DTSObjectHostType 列挙子です。

実装

IDTSObjectHost.HostType

使用例

次のコード例では、パッケージを作成し、そのパッケージに Sequence コンテナーを追加します。 次に FileSystemTask をタスク ホストに追加し、HostType プロパティを確認して、DTSObjectHostType 列挙から値を返します。

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

namespace Microsoft.SqlServer.SSIS.Samples
{
    class mySample
    {
        static void Main(string[] args)
        {
            Package package = new Package();
            Sequence seq = (Sequence)package.Executables.Add("STOCK:SEQUENCE");

            // Add a File System task.
            Executable eFileTask1 = seq.Executables.Add("STOCK:FileSystemTask");
            TaskHost thFileTask1 = eFileTask1 as TaskHost;

            // Use the TaskHost variable to find the DtsObjectHostType.
            DTSObjectHostType hType = thFileTask1.HostType;
            Console.WriteLine("Host Type: {0}", hType);
        }
    }
}
Imports System
Imports System.Collections.Generic
Imports System.Text
Imports Microsoft.SqlServer.Dts.Runtime
Imports Microsoft.SqlServer.Dts.Tasks.FileSystemTask
 
Namespace Microsoft.SqlServer.SSIS.Samples
    Class mySample
        Shared  Sub Main(ByVal args() As String)
            Dim package As Package =  New Package() 
            Dim seq As Sequence = CType(package.Executables.Add("STOCK:SEQUENCE"), Sequence)
 
            ' Add a File System task.
            Dim eFileTask1 As Executable =  seq.Executables.Add("STOCK:FileSystemTask") 
            Dim thFileTask1 As TaskHost =  eFileTask1 as TaskHost 
 
            ' Use the TaskHost variable to find the DtsObjectHostType.
            Dim hType As DTSObjectHostType =  thFileTask1.HostType 
            Console.WriteLine("Host Type: {0}", hType)
        End Sub
    End Class
End Namespace

サンプル出力:

Host Type: Task

関連項目

参照

TaskHost クラス

Microsoft.SqlServer.Dts.Runtime 名前空間