ForEachVariableMappings.Item Propiedad
Returns a ForEachVariableMapping object from the collection.
Espacio de nombres: Microsoft.SqlServer.Dts.Runtime
Ensamblado: Microsoft.SqlServer.ManagedDTS (en Microsoft.SqlServer.ManagedDTS.dll)
Sintaxis
'Declaración
Public ReadOnly Default Property Item ( _
index As Object _
) As ForEachVariableMapping
Get
'Uso
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 admite el uso de propiedades indizadas, pero no la declaración de otras nuevas.
Parámetros
- index
Tipo: System.Object
The name, description, ID, or index of the ForEachVariableMapping object to return.
Valor de la propiedad
Tipo: Microsoft.SqlServer.Dts.Runtime.ForEachVariableMapping
A ForEachVariableMapping object.
Comentarios
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.