开发sharepoint手机应用,出现的返回指定数据的有关问题

开发sharepoint手机应用,出现的返回指定数据的问题。
通过调用 http://xxx.xxx.xx.131:12000/_vti_bin/lists.asmx下的GetListCollection获得了所有的列表数据,但是我只想要几个字段的数据,怎么解决。例如字段有40多个,我只想要id,title,content,count四个字段,求高手不吝赐教!

SOAPAction: "http://schemas.microsoft.com/sharepoint/soap/GetListCollection"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <GetListCollection xmlns="http://schemas.microsoft.com/sharepoint/soap/" />
  </soap:Body>
</soap:Envelope>
------最佳解决方案--------------------
把获得的数据保存到array  活 dictionary 中,然后在解析就可以了啊
------其他解决方案--------------------
引用:
把获得的数据保存到array  活 dictionary 中,然后在解析就可以了啊

我请求的时候如果有1万条数据的话,一下就全部请求下来了,怎么能请求前1千条呢。
------其他解决方案--------------------
已经解决,就是只请求当前显示页面的数据,然后用户拖动的时候再请求。