Share via


Parameters.Item Property (Int32)

Returns a parameter object in the parameters collection with the specified index.

Namespace:  Microsoft.SqlServer.Dts.Runtime
Assembly:  Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)

Syntax

'Declaration
Public MustOverride ReadOnly Default Property Item ( _
    index As Integer _
) As Parameter 
    Get
'Usage
Dim instance As Parameters 
Dim index As Integer 
Dim value As Parameter 

value = instance(index)
public abstract Parameter this[
    int index
] { get; }
public:
virtual property Parameter^ default[int index] {
    Parameter^ get (int index) abstract;
}
abstract Item : Parameter
JScript supports the use of indexed properties, but not the declaration of new ones.

Parameters

  • index
    Type: System.Int32
    The location of the parameter object within the parameters collection.

Property Value

Type: Microsoft.SqlServer.Dts.Runtime.Parameter
A parameter object with the specified index.

See Also

Reference

Parameters Class

Item Overload

Microsoft.SqlServer.Dts.Runtime Namespace