* @see <a href="http://www.mediawiki.org/wiki/API:Pageswithprop">API:Pageswithprop</a>
*/
public List<Page> retrievePagesWithProp(
EnumWikipedia wiki,
String property, boolean limit) throws APIException {
ApiPagesWithPropResult result = new ApiXmlPagesWithPropResult(wiki, httpClient);
ApiPagesWithPropRequest request = new ApiPagesWithPropRequest(wiki, result);
return request.loadPagesWithProp(property, limit);
}