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.

C#
public System.Data.Common.DbParameter this[string parameterName] { get; set; }

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

.NET 10 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1
UWP 10.0

Item[Int32]

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

Gets or sets the DbParameter at the specified index.

C#
public System.Data.Common.DbParameter this[int index] { get; set; }

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

.NET 10 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1
UWP 10.0