有人能告诉我为什么SSRS Web服务ReportService2005.asmx在ListChildren上具有递归参数,而与Sharepoint集成模式版本ReportService2006.asmx不具有递归参数呢?
ReportService2005:
public CatalogItem[] ListChildren (
string Item,
bool Recursive
)
参考资料:http://technet.microsoft.com/en-us/library/reportservice2005.reportingservice2005.listchildren.aspx
报告服务2006:
public CatalogItem[] ListChildren (
string Item
)
参考:http://technet.microsoft.com/en-us/library/reportservice2006.reportingservice2006.listchildren.aspx
如果我想在SharePoint集成模式下列出子项目,我是否需要自己递归?
删除这个参数的原因是什么?
谷歌没有显示任何东西...