Add Method (MySqlParameter)

MySQL Connector/Net

Adds the specified MySqlParameter object to the MySqlParameterCollection.

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

Syntax

C#
public MySqlParameter Add(
	MySqlParameter value
)
Visual Basic (Declaration)
Public Function Add ( _
	value As MySqlParameter _
) As MySqlParameter
Visual C++
public:
MySqlParameter^ Add(
	MySqlParameter^ value
)

Parameters

value
Type: MySql.Data.MySqlClient..::.MySqlParameter
The MySqlParameter to add to the collection.

Return Value

The newly added MySqlParameter object.

See Also