SqliteParameterCollection.Item[] Property
Definition
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.
Overloads
Item[String] |
Gets or sets the parameter with the specified name. |
Item[Int32] |
Gets or sets the parameter at the specified index. |
Item[String]
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
Gets or sets the parameter with the specified name.
public virtual Microsoft.Data.Sqlite.SqliteParameter this[string parameterName] { get; set; }
member this.Item(string) : Microsoft.Data.Sqlite.SqliteParameter with get, set
Default Public Overridable Property Item(parameterName As String) As SqliteParameter
Parameters
- parameterName
- String
The name of the parameter.
Property Value
The parameter.
Applies to
Item[Int32]
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
Gets or sets the parameter at the specified index.
public virtual Microsoft.Data.Sqlite.SqliteParameter this[int index] { get; set; }
member this.Item(int) : Microsoft.Data.Sqlite.SqliteParameter with get, set
Default Public Overridable Property Item(index As Integer) As SqliteParameter
Parameters
- index
- Int32
The zero-based index of the parameter.
Property Value
The parameter.