DbParameterCollection.Item[] Property

Definition

Gets or sets a DbParameter in the collection.

Overloads

Item[String]

Gets or sets the DbParameter with the specified name.

Item[Int32]

Gets or sets the DbParameter at the specified index.

Item[String]

Source:
DbParameterCollection.cs
Source:
DbParameterCollection.cs
Source:
DbParameterCollection.cs

Gets or sets the DbParameter with the specified name.

public:
 property System::Data::Common::DbParameter ^ default[System::String ^] { System::Data::Common::DbParameter ^ get(System::String ^ parameterName); void set(System::String ^ parameterName, System::Data::Common::DbParameter ^ value); };
public System.Data.Common.DbParameter this[string parameterName] { get; set; }
member this.Item(string) : System.Data.Common.DbParameter with get, set
Default Public Property Item(parameterName As String) As DbParameter

Parameters

parameterName
String

The name of the DbParameter.

Property Value

The DbParameter with the specified name.

Exceptions

The specified index does not exist.

See also

Applies to

Item[Int32]

Source:
DbParameterCollection.cs
Source:
DbParameterCollection.cs
Source:
DbParameterCollection.cs

Gets or sets the DbParameter at the specified index.

public:
 property System::Data::Common::DbParameter ^ default[int] { System::Data::Common::DbParameter ^ get(int index); void set(int index, System::Data::Common::DbParameter ^ value); };
public System.Data.Common.DbParameter this[int index] { get; set; }
member this.Item(int) : System.Data.Common.DbParameter with get, set
Default Public Property Item(index As Integer) As DbParameter

Parameters

index
Int32

The zero-based index of the parameter.

Property Value

The DbParameter at the specified index.

Exceptions

The specified index does not exist.

See also

Applies to