SqliteParameterCollection.IndexOf Method    
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
| IndexOf(SqliteParameter) | 
						 Gets the index of the specified parameter.  | 
        	
| IndexOf(Object) | 
						 Gets the index of the specified parameter.  | 
        	
| IndexOf(String) | 
						 Gets the index of the parameter with the specified name.  | 
        	
IndexOf(SqliteParameter)
- 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 the index of the specified parameter.
public virtual int IndexOf(Microsoft.Data.Sqlite.SqliteParameter value);
	override this.IndexOf : Microsoft.Data.Sqlite.SqliteParameter -> int
	Public Overridable Function IndexOf (value As SqliteParameter) As Integer
	Parameters
- value
 - SqliteParameter
 
The parameter.
Returns
The zero-based index of the parameter.
Applies to
IndexOf(Object)
- 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 the index of the specified parameter.
public override int IndexOf(object value);
	override this.IndexOf : obj -> int
	Public Overrides Function IndexOf (value As Object) As Integer
	Parameters
- value
 - Object
 
The parameter. Must be a SqliteParameter.
Returns
The zero-based index of the parameter.
Applies to
IndexOf(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 the index of the parameter with the specified name.
public override int IndexOf(string parameterName);
	override this.IndexOf : string -> int
	Public Overrides Function IndexOf (parameterName As String) As Integer
	Parameters
- parameterName
 - String
 
The name of the parameter.
Returns
The zero-based index of the parameter or -1 if not found.