MySqlParameterCollection.Contains Method (Object)

MySQL Connector/Net

MySqlParameterCollectionContains Method (Object)
Gets a value indicating whether a MySqlParameter exists in the collection.

Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.9.9
Syntax
public override bool Contains(
	Object value
)
Public Overrides Function Contains ( 
	value As Object
) As Boolean
public:
virtual bool Contains(
	Object^ value
) override
abstract Contains : 
        value : Object -> bool 
override Contains : 
        value : Object -> bool 

Parameters

value
Type: SystemObject
The value of the MySqlParameter object to find.

Return Value

Type: Boolean
true if the collection contains the MySqlParameter object; otherwise, false.

Implements

IListContains(Object)
See Also