Właściwość DataTypeInfos.Item
Zwraca DataTypeInfo obiekt z kolekcja.
Przestrzeń nazw: Microsoft.SqlServer.Dts.Runtime
Zestaw: Microsoft.SqlServer.ManagedDTS (w Microsoft.SqlServer.ManagedDTS.dll)
Składnia
'Deklaracja
Public ReadOnly Default Property Item ( _
index As Object _
) As DataTypeInfo
Get
'Użycie
Dim instance As DataTypeInfos
Dim index As Object
Dim value As DataTypeInfo
value = instance(index)
public DataTypeInfo this[
Object index
] { get; }
public:
property DataTypeInfo^ default[Object^ index] {
DataTypeInfo^ get (Object^ index);
}
member Item : DataTypeInfo
Język JScript obsługuje używanie indeksowanych właściwości, ale nie obsługuje deklarowania nowych.
Parametry
- index
Typ: System.Object
Indeks DataTypeInfo obiektu pobrać z kolekcja.
Wartość właściwości
Typ: Microsoft.SqlServer.Dts.Runtime.DataTypeInfo
A DataTypeInfo obiektu.
Uwagi
Jeśli wywołanie Contains Metoda zwraca true, określonego elementu kolekcja można uzyskać dostęp za pomocą składni DataTupeInfos[index].Jeśli Contains Metoda zwraca false, ta właściwość zgłasza wyjątek.W języku C#, ta właściwość jest indeksowanie dla DataTypeInfos klasy
Przykłady
Poniższy przykładowy kod pobiera element z kolekcja, używając dwóch metod.Pierwszy metoda używa dataInfos[0] składni, aby pobrać cały obiekt znajdujący się na pierwszym miejscu gromadzenia i umieścić go w dtInfo obiektu.Po wykonaniu tych czynności można pobrać wszystkich właściwości z dtInfo obiektu w zwykły sposób.Druga metoda ilustruje sposób pobrać właściwość określonym pierwszy obiekt kolekcja.
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.SqlServer.Dts.Runtime;
namespace DataTypeInfos_GetEnum_Current
{
class Program
{
static void Main(string[] args)
{
//Create the DataTypeInfos collection.
DataTypeInfos dataInfos = new Application().DataTypeInfos;
//Using the Item method syntax of [x], obtain the first entry.
DataTypeInfo dtInfo = dataInfos[0];
String nameOfFirstItem = dataInfos[0].TypeName;
//Print the name of the task object located at position [0].
Console.WriteLine("The TypeEnumName of the first item is: {0}", dtInfo.TypeEnumName);
Console.WriteLine("The TypeName of the first task is: {0}", nameOfFirstItem);
}
}
}
Imports System
Imports System.Collections.Generic
Imports System.Text
Imports Microsoft.SqlServer.Dts.Runtime
Namespace DataTypeInfos_GetEnum_Current
Class Program
Shared Sub Main(ByVal args() As String)
'Create the DataTypeInfos collection.
Dim dataInfos As DataTypeInfos = New Application().DataTypeInfos
'Using the Item method syntax of [x], obtain the first entry.
Dim dtInfo As DataTypeInfo = dataInfos(0)
Dim nameOfFirstItem As String = dataInfos(0).TypeName
'Print the name of the task object located at position [0].
Console.WriteLine("The TypeEnumName of the first item is: {0}", dtInfo.TypeEnumName)
Console.WriteLine("The TypeName of the first task is: {0}", nameOfFirstItem)
End Sub
End Class
End Namespace
Przykładowe dane wyjściowe:
TypeEnumName pierwszy element jest: DT_R4
TypeName pierwszego zadania jest: Pływak