Hi, all I use search method to search Public Folder. Now, Because the record count is too huge, about 5000 So, First I want to get record count. How to do it, use WEBDAV SearchMethod. Thanks a lot Any suggestion would be greatly apprecievated
The easiest way would be just to do a propfind on one of the folders content count properties. The DAV:VisibleCount property should suffice http://msdn.microsoft.com/library/default.asp?url=/library/en-us/e2k3/e2k3/_cdo_iitem_visiblecount.asp or you could use the PR_CONTENT_COUNT mapi property eg <?xml version='1.0'?> <propfind xmlns="DAV:"> <prop xmlns:m="http://schemas.microsoft.com/mapi/proptag/"> <m:0x36020003/></prop> </propfind> Cheers Glen "jeff" wrote in message news:0763E6A0-D3C2-4803-97D0-F5CD451AF326@microsoft.com... > Hi, all > > I use search method to search Public Folder. > Now, Because the record count is too huge, about 5000 > > So, First I want to get record count. > > How to do it, use WEBDAV SearchMethod. > > Thanks a lot > > Any suggestion would be greatly apprecievated > > >