Поделиться через


Свойство Item

Returns the EventInfo object from the collection.

Пространство имен:  Microsoft.SqlServer.Dts.Runtime
Сборка:  Microsoft.SqlServer.ManagedDTS (в Microsoft.SqlServer.ManagedDTS.dll)

Синтаксис

'Декларация
Public ReadOnly Default Property Item ( _
    index As Object _
) As EventInfo
    Get
'Применение
Dim instance As EventInfos
Dim index As Object
Dim value As EventInfo

value = instance(index)
public EventInfo this[
    Object index
] { get; }
public:
property EventInfo^ default[Object^ index] {
    EventInfo^ get (Object^ index);
}
member Item : EventInfo
JScript поддерживает использование индексированных свойств, но не объявление новых.

Параметры

Значение свойства

Тип: Microsoft.SqlServer.Dts.Runtime. . :: . .EventInfo
An EventInfo object.

Замечания

If the call to Contains method returns true, you can access the specified element in the collection by using the syntax EventInfos[index]. If the Contains returns false, this property throws an exception. In C#, this property is the indexer for the EventInfos class.