ReportingService2010.FindItems 方法

定义

从报表服务器数据库或 SharePoint 库返回符合搜索条件的项。

public:
 cli::array <ReportService2010::CatalogItem ^> ^ FindItems(System::String ^ Folder, ReportService2010::BooleanOperatorEnum BooleanOperator, cli::array <ReportService2010::Property ^> ^ SearchOptions, cli::array <ReportService2010::SearchCondition ^> ^ SearchConditions);
[System.Web.Services.Protocols.SoapDocumentMethod("http://schemas.microsoft.com/sqlserver/reporting/2010/03/01/ReportServer/FindItems", ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped, RequestNamespace="http://schemas.microsoft.com/sqlserver/reporting/2010/03/01/ReportServer", ResponseNamespace="http://schemas.microsoft.com/sqlserver/reporting/2010/03/01/ReportServer", Use=System.Web.Services.Description.SoapBindingUse.Literal)]
[System.Web.Services.Protocols.SoapHeader("ServerInfoHeaderValue", Direction=System.Web.Services.Protocols.SoapHeaderDirection.Out)]
[System.Web.Services.Protocols.SoapHeader("TrustedUserHeaderValue")]
public ReportService2010.CatalogItem[] FindItems (string Folder, ReportService2010.BooleanOperatorEnum BooleanOperator, ReportService2010.Property[] SearchOptions, ReportService2010.SearchCondition[] SearchConditions);
[<System.Web.Services.Protocols.SoapDocumentMethod("http://schemas.microsoft.com/sqlserver/reporting/2010/03/01/ReportServer/FindItems", ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped, RequestNamespace="http://schemas.microsoft.com/sqlserver/reporting/2010/03/01/ReportServer", ResponseNamespace="http://schemas.microsoft.com/sqlserver/reporting/2010/03/01/ReportServer", Use=System.Web.Services.Description.SoapBindingUse.Literal)>]
[<System.Web.Services.Protocols.SoapHeader("ServerInfoHeaderValue", Direction=System.Web.Services.Protocols.SoapHeaderDirection.Out)>]
[<System.Web.Services.Protocols.SoapHeader("TrustedUserHeaderValue")>]
member this.FindItems : string * ReportService2010.BooleanOperatorEnum * ReportService2010.Property[] * ReportService2010.SearchCondition[] -> ReportService2010.CatalogItem[]
Public Function FindItems (Folder As String, BooleanOperator As BooleanOperatorEnum, SearchOptions As Property(), SearchConditions As SearchCondition()) As CatalogItem()

参数

Folder
String

要搜索的文件夹的完全限定 URL。 要搜索整个报表服务器数据库,请指定根文件夹 (/)。

BooleanOperator
BooleanOperatorEnum

逻辑运算符,应用该逻辑运算符可连接搜索条件。 可能值为 ANDOR。 默认值是 AND

SearchOptions
Property[]

一个 Property 对象的数组,该数组定义搜索选项的名称和值。

支持的搜索选项有:

Resursive:指定 True 以在所有子文件夹中执行递归搜索;否则指定 False

SearchConditions
SearchCondition[]

一个 SearchCondition 对象的数组,该数组定义要搜索的属性名和属性值。

返回

报表服务器数据库中与指定搜索条件对应的对象的 CatalogItem 数组。

属性

注解

下表显示了有关此操作的标头和权限信息。

SOAP 标头用法 (In) TrustedUserHeaderValue

(Out) ServerInfoHeaderValue
本机模式所需权限
SharePoint 模式所需权限

参数的 Folder 长度不能超过 260 个字符;否则,将引发 SOAP 异常,错误代码 为 rsItemLengthExceeded

参数 Folder 不能为 null 或空,也不能包含以下保留字符: : ? ; @ & = + $ , \ * > < | . "。 可以使用 /) (正斜杠字符分隔文件夹的完整路径名称中的项目,但不能在文件夹名称的末尾使用它。

在搜索条件集中只能提供属性名称的一个实例,并且搜索文本不区分大小写。

报表服务器不支持在搜索条件中间使用通配符。 通配符包括 %、_、[、]、^和 -。 如果存在通配符,则报表服务器按字面处理该字符。

返回的项仅是用户在本机模式下具有权限和<xref:Microsoft.SharePoint.SPBasePermissions.ViewListItems>在 SharePoint 集成模式下具有ReadProperties权限的项。

在 SharePoint 模式下,此方法不返回类型 Resource为 的任何项,因为资源未存储在 SharePoint 模式下的报表服务器数据库中,也没有同步到报表服务器数据库中。

适用于