Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
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.