DbParameterCollection.Item[] Property
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a DbParameter in the collection.
Item[String] |
Gets or sets the DbParameter with the specified name. |
Item[Int32] |
Gets or sets the DbParameter at the specified index. |
- 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
.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 |
- 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
.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 |
.NET feedback
.NET is an open source project. Select a link to provide feedback: