次の方法で共有


LogEntryInfos.Item Property

LogEntryInfo オブジェクトをコレクションから返します。Item プロパティは、LogEntryInfos クラスの既定のインデクサとなります。このプロパティを使用すると、LogEntryInfos[…] 構文による値の参照ができます。

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

構文

'宣言
Public ReadOnly Default Property Item ( _
    index As Object _
) As LogEntryInfo
public LogEntryInfo this [
    Object index
] { get; }
public:
property LogEntryInfo^ default [Object^] {
    LogEntryInfo^ get (Object^ index);
}
/** @property */
public LogEntryInfo get_Item (Object index)

パラメータ

  • index
    コレクション内で検索する LogEntryInfo オブジェクトの名前、説明、ID、またはインデックスです。

プロパティ値

LogEntryInfo オブジェクトです。

解説

Contains メソッドの呼び出しが true を返す場合、LogEntryInfo[index] 構文を使用することにより、コレクション内の指定した要素にアクセスできます。Containsfalse を返す場合、このプロパティは例外をスローします。

C# の場合、このプロパティは LogEntryInfos クラスのインデクサとなります。

使用例

次のコード例では、2 つのメソッドを使用して、コレクションから項目を取得します。最初のメソッドでは、logInfos[0] 構文を使用して、コレクションの先頭に格納されたオブジェクト全体を取得し、logInfos オブジェクトに格納します。これによって、logInfo オブジェクトのすべてのプロパティを通常どおり取得できるようになります。2 番目のメソッドでは、コレクションの最初のオブジェクトから特定のプロパティを取得します。

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

namespace LogEntryInfosTest
{
    class Program
    {
        static void Main(string[] args)
        {
            // The package is one of the SSIS Samples.
            string mySample = @"C:\Program Files\Microsoft SQL Server\90\Samples\Integration Services\Package Samples\CalculatedColumns Sample\CalculatedColumns\CalculatedColumns.dtsx";

            // Create the Application, and load the sample.
            Application app = new Application();
            Package pkg = app.LoadPackage(mySample, null);

            // Get the LogEntryInfos from the package.
            LogEntryInfos logInfos = pkg.LogEntryInfos;

            //Using the Item method syntax of [x], obtain the 
            //first entry. Also, using the [x] syntax, retrieve a
            // specific property, the Name. 
            LogEntryInfo logInfo = logInfos[0];
            String nameOfFirstItem = logInfos[0].Name;

            //Print the name of the logEntryInfo oabject located
            //at position [0].
            Console.WriteLine("The ID of the first log entry is: {0}", logInfo.ID);
            Console.WriteLine("The Name of the first log entry is: {0}", nameOfFirstItem);
        }
    }
}
Imports System
Imports System.Collections.Generic
Imports System.Text
Imports Microsoft.SqlServer.Dts.Runtime
 
Namespace LogEnTryInfosTest
    Class Program
        Shared  Sub Main(ByVal args() As String)
            ' The package is one of the SSIS Samples.
            Dim mySample As String =  "C:\Program Files\Microsoft SQL Server\90\Samples\Integration Services\Package Samples\CalculatedColumns Sample\CalculatedColumns\CalculatedColumns.dtsx" 
 
            ' Create the Application, and load the sample.
            Dim app As Application =  New Application() 
            Dim pkg As Package =  app.LoadPackage(mySample,Nothing) 
 
            ' Get the LogEntryInfos from the package.
            Dim logInfos As LogEnTryInfos =  pkg.LogEnTryInfos 
 
            'Using the Item method syntax of [x], obtain the 
            'first entry. Also, using the [x] syntax, retrieve a
            ' specific property, the Name. 
            Dim logInfo As LogEnTryInfo =  logInfos(0) 
            Dim nameOfFirstItem As String =  logInfos(0).Name 
 
            'Print the name of the logEntryInfo oabject located
            'at position [0].
            Console.WriteLine("The ID of the first log entry is: {0}", logInfo.ID)
            Console.WriteLine("The Name of the first log entry is: {0}", nameOfFirstItem)
        End Sub
    End Class
End Namespace

サンプルの出力 :

The ID of the first log entry is: {D5BD104A-9504-4087-A742-44B2BD90A09D}

The Name of the first log entry is: Diagnostic

スレッド セーフ

この型の public static (Microsoft Visual Basic では共有 ) メンバは、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。

プラットフォーム

開発プラットフォーム

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

対象プラットフォーム

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

参照

関連項目

LogEntryInfos Class
LogEntryInfos Members
Microsoft.SqlServer.Dts.Runtime Namespace