DBProviderInfos.Item[Object] 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
컬렉션에서 DBProviderInfo 개체를 반환합니다.
public:
property Microsoft::SqlServer::Dts::Runtime::DBProviderInfo ^ default[System::Object ^] { Microsoft::SqlServer::Dts::Runtime::DBProviderInfo ^ get(System::Object ^ index); };
public Microsoft.SqlServer.Dts.Runtime.DBProviderInfo this[object index] { get; }
member this.Item(obj) : Microsoft.SqlServer.Dts.Runtime.DBProviderInfo
Default Public ReadOnly Property Item(index As Object) As DBProviderInfo
매개 변수
- index
- Object
반환할 DBProviderInfo 개체의 이름, 설명 또는 인덱스입니다.
속성 값
DBProviderInfos 개체입니다.
예제
다음 코드 예제에서는 두 가지 메서드를 사용 하 여 컬렉션에서 항목을 검색 합니다. 첫 번째 메서드는 구문을 사용하여 dbprovInfos[0]
컬렉션의 첫 번째 위치에 있는 전체 개체를 검색하고 개체에 dbInfo
배치합니다. 이제 평소와 같이 개체에서 모든 속성을 검색할 dbInfo
수 있습니다. 두 번째 메서드는 컬렉션의 첫 번째 개체에서 특정 속성을 검색하는 방법을 보여 줍니다.
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.SqlServer.Dts.Runtime;
namespace DBProvInfos_GetEnum
{
class Program
{
static void Main(string[] args)
{
Application app = new Application();
DBProviderInfos dbprovInfos = app.DBProviderInfos;
//Using the Item method syntax of [x], obtain the first entry.
DBProviderInfo dbInfo = dbprovInfos[0];
String nameOfFirstItem = dbprovInfos[0].Name;
//Print the name of the log provider object located at position [0].
Console.WriteLine("The db provider type of the first provider is: {0}", dbInfo.ProviderType);
Console.WriteLine("The Name of the first database provider is: {0}", nameOfFirstItem);
}
}
}
Imports System
Imports System.Collections.Generic
Imports System.Text
Imports Microsoft.SqlServer.Dts.Runtime
Namespace DBProvInfos_GetEnum
Class Program
Shared Sub Main(ByVal args() As String)
Dim app As Application = New Application()
Dim dbprovInfos As DBProviderInfos = app.DBProviderInfos
'Using the Item method syntax of [x], obtain the first entry.
Dim dbInfo As DBProviderInfo = dbprovInfos(0)
Dim nameOfFirstItem As String = dbprovInfos(0).Name
'Print the name of the log provider object located at position [0].
Console.WriteLine("The db provider type of the first provider is: {0}", dbInfo.ProviderType)
Console.WriteLine("The Name of the first database provider is: {0}", nameOfFirstItem)
End Sub
End Class
End Namespace
샘플 출력:
첫 번째 공급자의 db 공급자 유형은 OleDb입니다.
첫 번째 데이터베이스 공급자의 이름은 MediaCatalogDB OLE DB 공급자입니다.
설명
메서드 호출 Contains 이 반환 true
되면 구문을 DBProviderInfos[index]
사용하여 컬렉션에서 지정된 요소에 액세스할 수 있습니다. 반환false
되는 Contains 경우 이 속성은 예외를 throw합니다. C#에서 이 속성은 DBProviderInfos 클래스의 인덱서입니다.