TaskInfos.Item Property
TaskInfo をコレクションから取得します。
名前空間: Microsoft.SqlServer.Dts.Runtime
アセンブリ: Microsoft.SqlServer.ManagedDTS (microsoft.sqlserver.manageddts.dll 内)
構文
'宣言
Public ReadOnly Default Property Item ( _
index As Object _
) As TaskInfo
public TaskInfo this [
Object index
] { get; }
public:
property TaskInfo^ default [Object^] {
TaskInfo^ get (Object^ index);
}
/** @property */
public TaskInfo get_Item (Object index)
パラメータ
- index
コレクションから取得する TaskInfo の名前、ID、またはインデックスです。
プロパティ値
TaskInfo オブジェクトです。
解説
Contains メソッドの呼び出しが true を返す場合、TaskInfos[index]
構文を使用することにより、コレクション内の指定した要素にアクセスできます。Containsメソッドの呼び出しが false を返す場合、このプロパティは例外をスローします。C# の場合、このプロパティは TaskInfos クラスのインデクサとなります。
使用例
次のコード例では、2 つのメソッドを使用して、コレクションから項目を取得します。最初のメソッドでは、tInfos[0]
構文を使用して、コレクションの先頭に格納されたオブジェクト全体を取得し、tInfo
オブジェクトに格納します。これによって、tInfo
オブジェクトのすべてのプロパティを通常どおり取得できるようになります。2 番目のメソッドでは、コレクションの最初のオブジェクトから特定のプロパティを取得します。
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.SqlServer.Dts.Runtime;
namespace TaskInfos_Item
{
class Program
{
static void Main(string[] args)
{
Application app = new Application();
TaskInfos tInfos = app.TaskInfos;
//Using the Item method syntax of [x], obtain the first
//entry.
TaskInfo tInfo = tInfos[0];
String nameOfFirstItem = tInfos[0].Name;
//This could also be done using the Name property, as
//demonstrated by this next line of commented code.
//TaskInfo tInfo = tInfos["Execute Package Task"];
//You can also use the ID property.
// TaskInfo tInfo = tInfos["{8FE4A9F8-D077-436B-9B00-C1EEAEFAFE55}"];
//Print the name of the task object located at position [0].
Console.WriteLine("The task ID of the first provider is: {0}", tInfo.ID);
Console.WriteLine("The Name of the first task is: {0}", nameOfFirstItem);
}
}
}
Imports System
Imports System.Collections.Generic
Imports System.Text
Imports Microsoft.SqlServer.Dts.Runtime
Namespace TaskInfos_Item
Class Program
Shared Sub Main(ByVal args() As String)
Dim app As Application = New Application()
Dim tInfos As TaskInfos = app.TaskInfos
'Using the Item method syntax of [x], obtain the first
'entry.
Dim tInfo As TaskInfo = tInfos(0)
Dim nameOfFirstItem As String = tInfos(0).Name
'This could also be done using the Name property, as
'demonstrated by this next line of commented code.
'TaskInfo tInfo = tInfos["Execute Package Task"];
'You can also use the ID property.
' TaskInfo tInfo = tInfos["{8FE4A9F8-D077-436B-9B00-C1EEAEFAFE55}"];
'Print the name of the task object located at position [0].
Console.WriteLine("The task ID of the first provider is: {0}", tInfo.ID)
Console.WriteLine("The Name of the first task is: {0}", nameOfFirstItem)
End Sub
End Class
End Namespace
サンプルの出力 :
The task ID of the first provider is: {8FE4A9F8-D077-436B-9B00-C1EEAEFAFE55}
The Name of the first task is: Execute Package Task
スレッド セーフ
この型の public static (Microsoft Visual Basic では共有 ) メンバは、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。
プラットフォーム
開発プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
対象プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
参照
関連項目
TaskInfos Class
TaskInfos Members
Microsoft.SqlServer.Dts.Runtime Namespace