MySqlParameterCollection.RemoveAt Method (String)

MySQL Connector/Net

MySqlParameterCollectionRemoveAt Method (String)
Removes the specified MySqlParameter from the collection using the parameter name.

Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.9.9
Syntax
public override void RemoveAt(
	string parameterName
)
Public Overrides Sub RemoveAt ( 
	parameterName As String
)
public:
virtual void RemoveAt(
	String^ parameterName
) override
abstract RemoveAt : 
        parameterName : string -> unit 
override RemoveAt : 
        parameterName : string -> unit 

Parameters

parameterName
Type: SystemString
The name of the MySqlParameter object to retrieve.

Implements

IDataParameterCollectionRemoveAt(String)
See Also