LogProviders.Item[Object] Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém um objeto LogProvider da coleção.
public:
property Microsoft::SqlServer::Dts::Runtime::LogProvider ^ default[System::Object ^] { Microsoft::SqlServer::Dts::Runtime::LogProvider ^ get(System::Object ^ index); };
public Microsoft.SqlServer.Dts.Runtime.LogProvider this[object index] { get; }
member this.Item(obj) : Microsoft.SqlServer.Dts.Runtime.LogProvider
Default Public ReadOnly Property Item(index As Object) As LogProvider
Parâmetros
- index
- Object
O nome, a descrição, a ID ou o índice do objeto a ser retornado da coleção.
Valor da propriedade
Um objeto LogProvider da coleção.
Exemplos
O exemplo de código a seguir recupera um item da coleção usando dois métodos. O primeiro método usa a logProvs[0]
sintaxe para recuperar todo o objeto localizado na primeira posição da coleção e colocá-lo no logProv
objeto. Agora você pode recuperar todas as propriedades do logProv
objeto como de costume. O segundo método demonstra como recuperar uma propriedade específica do primeiro objeto da coleção.
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.SqlServer.Dts.Runtime;
namespace LogProviders_Tests
{
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);
LogProviders logProvs = pkg.LogProviders;
//Using the Item method syntax of [x], obtain the
// first entry and a name.
LogProvider logProv = logProvs[0];
String nameOfFirstItem = logProvs[0].Name;
//Print the name of the log provider object
// located at position [0].
Console.WriteLine("The ID of the first connection info is: {0}", logProv.ID);
Console.WriteLine("The Name of the first connection info is: {0}", nameOfFirstItem);
}
}
}
Imports System
Imports System.Collections.Generic
Imports System.Text
Imports Microsoft.SqlServer.Dts.Runtime
Namespace LogProviders_Tests
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)
Dim logProvs As LogProviders = pkg.LogProviders
'Using the Item method syntax of [x], obtain the
' first entry and a name.
Dim logProv As LogProvider = logProvs(0)
Dim nameOfFirstItem As String = logProvs(0).Name
'Print the name of the log provider object
' located at position [0].
Console.WriteLine("The ID of the first connection info is: {0}", logProv.ID)
Console.WriteLine("The Name of the first connection info is: {0}", nameOfFirstItem)
End Sub
End Class
End Namespace
Saída de exemplo:
A ID das primeiras informações de conexão é: {1E107E39-DB79-4F02-B8A7-61D88F2DEF63}
O nome das primeiras informações de conexão é: provedor de log do SSIS para arquivos de texto
Comentários
Se a chamada ao Contains método retornar true
, você poderá acessar o elemento especificado na coleção usando a sintaxe LogProviders[index]
. Se a Contains propriedade retornar false
, essa propriedade gerará uma exceção. Em C#, essa propriedade é o indexador da classe LogProviders.