Add Method (Object)

MySQL Connector.Net

Collapse image Expand Image Copy image CopyHover image
Adds the specified MySqlParameter object to the MySqlParameterCollection.

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

Syntax

C#
public override int Add(
	Object value
)
Visual Basic
Public Overrides Function Add ( _
	value As Object _
) As Integer
Visual C++
public:
virtual int Add(
	Object^ value
) override

Parameters

value
Type: System..::..Object
The MySqlParameter to add to the collection.

Return Value

The index of the new MySqlParameter object.

Implements

IList..::..Add(Object)

See Also