ForEachVariableMappings.Item[Object] Property

Definition

Returns a ForEachVariableMapping object from the collection.

public:
 property Microsoft::SqlServer::Dts::Runtime::ForEachVariableMapping ^ default[System::Object ^] { Microsoft::SqlServer::Dts::Runtime::ForEachVariableMapping ^ get(System::Object ^ index); };
public Microsoft.SqlServer.Dts.Runtime.ForEachVariableMapping this[object index] { get; }
member this.Item(obj) : Microsoft.SqlServer.Dts.Runtime.ForEachVariableMapping
Default Public ReadOnly Property Item(index As Object) As ForEachVariableMapping

Parameters

index
Object

The name, description, ID, or index of the ForEachVariableMapping object to return.

Property Value

A ForEachVariableMapping object.

Remarks

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.

Applies to