SSRS Sharepoint集成模式:我的递归参数在哪里?

时间:2008-10-20 12:46:48

标签: c# web-services sharepoint reporting-services

有人可以告诉我为什么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没有显示任何内容......

1 个答案:

答案 0 :(得分:0)

我已经通过编写自己的代码来解决这个问题,以递归方式检索我需要的目录。