다음을 통해 공유


LogProviders.Contains(Object) 메서드

정의

예외를 발생시키지 않고 인덱싱을 사용하여 LogProviders 컬렉션에서 항목을 검색할 수 있는지 여부를 지정합니다.

public:
 bool Contains(System::Object ^ index);
public bool Contains (object index);
member this.Contains : obj -> bool
Public Function Contains (index As Object) As Boolean

매개 변수

index
Object

컬렉션에 있는 개체의 숫자 인덱스 또는 ID가 포함된 개체입니다.

반환

Boolean

인덱싱을 사용하여 항목을 검색할 수 있는지 여부를 나타내는 부울입니다. true 값은 예외를 throw하지 않고 LogProviders[x] 구문을 사용할 수 있음을 나타냅니다. false 값은 인덱싱을 사용하여 컬렉션에서 항목을 검색할 수 없음을 LogProviders 나타냅니다.

예제

다음 코드 샘플에서는 메서드를 사용하여 Contains 이름이 "텍스트 파일에 대한 SSIS 로그 공급자"인 로그 공급자가 컬렉션에 있는지 확인합니다. 메서드는 .를 반환합니다 Boolean.

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;  

            // Search for the "SSIS log provider for Text files"  
            // in the collection  
            if (logProvs.Contains("SSIS log provider for Text files"))  
                Console.WriteLine("The collection contains {0} provider", logProvs[0].CreationName);  
            else  
                Console.WriteLine("The collection does not contain the SSIS log provider for Text files");  
        }  
    }  
}  
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   

            ' Search for the "SSIS log provider for Text files"  
            ' in the collection  
            If logProvs.Contains("SSIS log provider for Text files") Then  
                Console.WriteLine("The collection contains {0} provider", logProvs(0).CreationName)  
            Else   
                Console.WriteLine("The collection does not contain the SSIS log provider for Text files")  
            End If  
         End Sub  
    End Class  
End Namespace  

샘플 출력:

컬렉션에 DTS가 포함되어 있습니다. LogProviderTextFile.1 공급자

설명

메서드 Name 를 사용하여 로그 공급자를 Add 추가하는 경우 로그 공급자의 기본값은 GUID입니다.

적용 대상