SearchExecutor.ExecuteQueries method

Reserved for internal use. Use this method only through client-side object model.

Namespace:  Microsoft.SharePoint.Client.Search.Query
Assembly:  Microsoft.SharePoint.Client.Search (in Microsoft.SharePoint.Client.Search.dll)

Syntax

'Declaration
Public Function ExecuteQueries ( _
    queryIds As String(), _
    queries As Query(), _
    handleExceptions As Boolean _
) As ClientResult(Of IDictionary(Of String, ResultTableCollection))
'Usage
Dim instance As SearchExecutor
Dim queryIds As String()
Dim queries As Query()
Dim handleExceptions As Boolean
Dim returnValue As ClientResult(Of IDictionary(Of String, ResultTableCollection))

returnValue = instance.ExecuteQueries(queryIds, _
    queries, handleExceptions)
public ClientResult<IDictionary<string, ResultTableCollection>> ExecuteQueries(
    string[] queryIds,
    Query[] queries,
    bool handleExceptions
)

Parameters

  • queryIds
    Type: []

    An array with the queries to execute.

  • queries
    Type: []

    An array with the identifiers for the queries. This array must be of the same length as queries and its members must be non-null and unique among themselves. The string at position i is the ID for the ith query in the queries array.

  • handleExceptions
    Type: System.Boolean

    Specify if exceptions are handled.

Return value

Type: Microsoft.SharePoint.Client.ClientResult<IDictionary<String, ResultTableCollection>>
A Dictionary<Guid,ResultTableCollection>. Each item represents results for one of the search queries passed; its key is the corresponding query ID passed in queryIds.

See also

Reference

SearchExecutor class

SearchExecutor members

Microsoft.SharePoint.Client.Search.Query namespace