MySqlParameterCollection.Item Property (Int32)

MySQL Connector/Net

MySqlParameterCollectionItem Property (Int32)
Gets the MySqlParameter at the specified index.

Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.9.9
Syntax
public MySqlParameter this[
	int index
] { get; set; }
Public Default Property Item ( 
	index As Integer
) As MySqlParameter
	Get
	Set
public:
property MySqlParameter^ default[int index] {
	MySqlParameter^ get (int index);
	void set (int index, MySqlParameter^ value);
}
member Item : MySqlParameter with get, set

Parameters

index
Type: SystemInt32

Property Value

Type: MySqlParameter
See Also