Contains Method (Object)

MySQL Connector.Net

Collapse image Expand Image Copy image CopyHover image
Gets a value indicating whether a MySqlParameter exists in the collection.

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

Syntax

C#
public override bool Contains(
	Object value
)
Visual Basic
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