LogEntryInfos.Item[Object] Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene un oggetto LogEntryInfo dalla raccolta. La Item[Object] proprietà è l'indicizzatore predefinito per LogEntryInfos la classe e consente la ricerca dei valori usando LogEntryInfos[...] .
public:
property Microsoft::SqlServer::Dts::Runtime::LogEntryInfo ^ default[System::Object ^] { Microsoft::SqlServer::Dts::Runtime::LogEntryInfo ^ get(System::Object ^ index); };
public Microsoft.SqlServer.Dts.Runtime.LogEntryInfo this[object index] { get; }
member this.Item(obj) : Microsoft.SqlServer.Dts.Runtime.LogEntryInfo
Default Public ReadOnly Property Item(index As Object) As LogEntryInfo
Parametri
- index
- Object
Nome, descrizione, ID o indice dell'oggetto LogEntryInfo da individuare nella raccolta.
Valore della proprietà
Oggetto LogEntryInfo dalla raccolta.
Esempio
Nell'esempio di codice seguente viene recuperato un elemento dalla raccolta usando due metodi. Il primo metodo usa la logInfos[0]
sintassi per recuperare l'intero oggetto che si trova nella prima posizione dell'insieme e inserirlo nell'oggetto logInfos
. È ora possibile recuperare tutte le proprietà dall'oggetto logInfo
come di consueto. Il secondo metodo illustra come recuperare una proprietà specifica dal primo oggetto dell'insieme.
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\100\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\100\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
Esempio di output
L'ID della prima voce di log è: {D5BD104A-9504-4087-A742-44B2BD90A09D}
Il nome della prima voce di log è: Diagnostica
Commenti
Se la chiamata al metodo restituisce true
, è possibile accedere all'elemento Contains specificato nella raccolta usando la sintassi LogEntryInfo[index]
. Se restituisce Containsfalse
, questa proprietà genera un'eccezione.
In C#, questa proprietà è l'indicizzatore per la classe LogEntryInfos.