Свойство Item
Returns a ForEachVariableMapping object from the collection.
Пространство имен: Microsoft.SqlServer.Dts.Runtime
Сборка: Microsoft.SqlServer.ManagedDTS (в Microsoft.SqlServer.ManagedDTS.dll)
Синтаксис
'Декларация
Public ReadOnly Default Property Item ( _
index As Object _
) As ForEachVariableMapping
Get
'Применение
Dim instance As ForEachVariableMappings
Dim index As Object
Dim value As ForEachVariableMapping
value = instance(index)
public ForEachVariableMapping this[
Object index
] { get; }
public:
property ForEachVariableMapping^ default[Object^ index] {
ForEachVariableMapping^ get (Object^ index);
}
member Item : ForEachVariableMapping
JScript поддерживает использование индексированных свойств, но не объявление новых.
Параметры
- index
Тип: System. . :: . .Object
The name, description, ID, or index of the ForEachVariableMapping object to return.
Значение свойства
Тип: Microsoft.SqlServer.Dts.Runtime. . :: . .ForEachVariableMapping
A ForEachVariableMapping object.
Замечания
If the call to the Contains method returns true, you can access the specified element in the collection by using the syntax ForEachVariableMappings[index]. However, if the Contains method returns false, this property throws an exception. In C#, this property is the indexer for the ForEachVariableMappings class.
См. также