LogEntryInfos.Contains(Object) Método
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í.
Indica si se puede obtener acceso a los elementos de la colección utilizando la indización sin producir una excepción.
public:
bool Contains(System::Object ^ index);
public bool Contains (object index);
member this.Contains : obj -> bool
Public Function Contains (index As Object) As Boolean
Parámetros
- index
- Object
El nombre, la descripción, el identificador o el índice del objeto LogEntryInfo que se va a buscar en la colección.
Devoluciones
Valor booleano que indica si se puede acceder a la colección por nombre, descripción, identificador o índice. Un valor true indica que se puede acceder a la colección mediante la sintaxis LogEntryInfos[index]. Un valor false indica que no se puede usar la indexación para recuperar elementos de la LogEntryInfos colección; el uso de esta propiedad produce una excepción.
Ejemplos
En el ejemplo de código siguiente se usa el Contains método para determinar si una entrada de registro con el nombre "Diagnostic" está en la colección. El método devuelve un Boolean
objeto .
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;
//See if the collection contains a LogEntryInfo named "Diagnostic".
Boolean logDiagnostic = logInfos.Contains("Diagnostic");
Console.WriteLine("Contains Diagnostic? {0}", logDiagnostic);
Console.WriteLine();
}
}
}
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
'See if the collection contains a LogEntryInfo named "Diagnostic".
Dim logDiagnostic As Boolean = logInfos.Contains("Diagnostic")
Console.WriteLine("Contains Diagnostic? {0}", logDiagnostic)
Console.WriteLine()
End Sub
End Class
End Namespace
Salida del ejemplo:
¿Contiene diagnóstico? Verdadero