Contains Method (Object)

MySQL Connector/Net

Gets a value indicating whether a MySqlParameter exists in the collection.

Namespace:  MySql.Data.MySqlClient
Assembly:  MySql.Data (in MySql.Data.dll) Version: 6.2.2.0

Syntax

C#
public override bool Contains(
	Object value
)
Visual Basic (Declaration)
Public Overrides Function Contains ( _
	value As Object _
) As Boolean
Visual C++
public:
virtual bool Contains(
	Object^ value
) override

Parameters

value
Type: System..::.Object
The value of the MySqlParameter object to find.

Return Value

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

Implements

IList..::.Contains(Object)

See Also