MySqlParameterCollection.Add Method (Object)

MySQL Connector/Net

MySqlParameterCollectionAdd Method (Object)
Adds the specified MySqlParameter object to the MySqlParameterCollection.

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

Parameters

value
Type: SystemObject
The MySqlParameter to add to the collection.

Return Value

Type: Int32
The index of the new MySqlParameter object.

Implements

IListAdd(Object)
See Also