【发布时间】:2009-02-03 23:27:44
【问题描述】:
谁能告诉我为什么 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
ReportService2006:
public CatalogItem[] ListChildren (
string Item
)
参考: http://technet.microsoft.com/en-us/library/reportservice2006.reportingservice2006.listchildren.aspx
如果我想在 sharepoint 集成模式下 ListChildren,我假设我必须自己递归?
去掉这个参数的原因是什么?
Google 什么也没显示...
【问题讨论】:
标签: c# web-services sharepoint reporting-services