Condividi tramite


LogProviders.Item[Object] Proprietà

Definizione

Ottiene un oggetto LogProvider dalla raccolta.

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

Parametri

index
Object

Nome, descrizione, ID o indice dell'oggetto da restituire dalla raccolta.

Valore della proprietà

LogProvider

Oggetto LogProvider dalla raccolta.

Esempio

Nell'esempio di codice seguente viene recuperato un elemento dalla raccolta usando due metodi. Il primo metodo usa la logProvs[0] sintassi per recuperare l'intero oggetto che si trova nella prima posizione dell'insieme e inserirlo nell'oggetto logProv . È ora possibile recuperare tutte le proprietà dall'oggetto logProv 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 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  

Esempio di output

L'ID delle prime informazioni di connessione è: {1E107E39-DB79-4F02-B8A7-61D88F2DEF63}

Il nome delle prime informazioni di connessione è: provider di log SSIS per i file di testo

Commenti

Se la chiamata al metodo restituisce true, è possibile accedere all'elemento Contains specificato nella raccolta usando la sintassi LogProviders[index]. Se restituisce Containsfalse, questa proprietà genera un'eccezione. In C#, questa proprietà è l'indicizzatore per la classe LogProviders.

Si applica a