SqliteParameterCollection.Contains 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
Contains(SqliteParameter) |
Gets a value indicating whether the collection contains the specified parameter. |
Contains(Object) |
Gets a value indicating whether the collection contains the specified parameter. |
Contains(String) |
Gets a value indicating whether the collection contains a parameter with the specified name. |
Contains(SqliteParameter)
Gets a value indicating whether the collection contains the specified parameter.
public virtual bool Contains (Microsoft.Data.Sqlite.SqliteParameter value);
override this.Contains : Microsoft.Data.Sqlite.SqliteParameter -> bool
Public Overridable Function Contains (value As SqliteParameter) As Boolean
Parameters
- value
- SqliteParameter
The parameter to look for.
Returns
true
if the collection contains the parameter; otherwise, false
.
Applies to
Contains(Object)
Gets a value indicating whether the collection contains the specified parameter.
public override bool Contains (object value);
override this.Contains : obj -> bool
Public Overrides Function Contains (value As Object) As Boolean
Parameters
- value
- Object
The parameter to look for. Must be a SqliteParameter.
Returns
true
if the collection contains the parameter; otherwise, false
.
Applies to
Contains(String)
Gets a value indicating whether the collection contains a parameter with the specified name.
public override bool Contains (string value);
override this.Contains : string -> bool
Public Overrides Function Contains (value As String) As Boolean
Parameters
- value
- String
The name of the parameter.
Returns
true
if the collection contains the parameter; otherwise, false
.