LogEntryInfos.Item[Object] Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Obtiene un objeto LogEntryInfo de la colección. La Item[Object] propiedad es el indexador predeterminado para LogEntryInfos la clase y permite la búsqueda de valores mediante 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
Parámetros
- index
- Object
Nombre, descripción, identificador o índice del objeto LogEntryInfo que se va a ubicar en la colección.
Valor de propiedad
Objeto LogEntryInfo de la colección.
Ejemplos
En el ejemplo de código siguiente se recupera un elemento de la colección mediante dos métodos. El primer método usa la logInfos[0]
sintaxis para recuperar todo el objeto ubicado en la primera posición de la colección y colocarlo en el logInfos
objeto . Ahora puede recuperar todas las propiedades del logInfo
objeto como de costumbre. El segundo método muestra cómo recuperar una propiedad específica del primer objeto de la colección.
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
Salida del ejemplo:
El identificador de la primera entrada de registro es: {D5BD104A-9504-4087-A742-44B2BD90A09D}
El nombre de la primera entrada de registro es: Diagnóstico
Comentarios
Si la llamada al Contains método devuelve true
, puede tener acceso al elemento especificado en la colección mediante la sintaxis LogEntryInfo[index]
. Contains Si devuelve false
, esta propiedad produce una excepción.
En C#, esta propiedad es el indizador para la clase LogEntryInfos.