ParameterInfos.Item[] Property

Definition

Gets the parameter object in the parameter collection.

Overloads

Item[Int32]

Gets the parameter object in the parameter collection with the specified index.

Item[String]

Gets the parameter object in the parameter collection with the specified name.

Item[Int32]

Gets the parameter object in the parameter collection with the specified index.

public:
 property Microsoft::SqlServer::Dts::Runtime::ParameterInfo ^ default[int] { Microsoft::SqlServer::Dts::Runtime::ParameterInfo ^ get(int index); };
public Microsoft.SqlServer.Dts.Runtime.ParameterInfo this[int index] { get; }
member this.Item(int) : Microsoft.SqlServer.Dts.Runtime.ParameterInfo
Default Public ReadOnly Property Item(index As Integer) As ParameterInfo

Parameters

index
Int32

The index.

Property Value

The ParameterInfo object with the specified index.

Applies to

Item[String]

Gets the parameter object in the parameter collection with the specified name.

public:
 property Microsoft::SqlServer::Dts::Runtime::ParameterInfo ^ default[System::String ^] { Microsoft::SqlServer::Dts::Runtime::ParameterInfo ^ get(System::String ^ parameterName); };
public Microsoft.SqlServer.Dts.Runtime.ParameterInfo this[string parameterName] { get; }
member this.Item(string) : Microsoft.SqlServer.Dts.Runtime.ParameterInfo
Default Public ReadOnly Property Item(parameterName As String) As ParameterInfo

Parameters

parameterName
String

The name of the parameter.

Property Value

The ParameterInfo object with the specified name.

Applies to