MySql.Data.MySqlClient.MySqlDataAdapter.GetBatchedParameter C# (CSharp) Method

GetBatchedParameter() protected method

protected GetBatchedParameter ( int commandIdentifier, int parameterIndex ) : IDataParameter
commandIdentifier int
parameterIndex int
return IDataParameter
        protected override IDataParameter GetBatchedParameter(int commandIdentifier, int parameterIndex)
        {
            return (IDataParameter)commandBatch[commandIdentifier].Parameters[parameterIndex];
        }