ExchangeServiceFindItems(FolderId, String, ViewBase, Grouping, CancellationToken) - метод
Obtains a grouped list of items by searching the contents of a specific folder. Calling this method results in a call to EWS.
Пространство имён: Tessa.Exchange.WebServices.DataСборка: Tessa.Server (в Tessa.Server.dll) Версия: 3.6.0.22
public Task<GroupedFindItemsResults<Item>> FindItems(
FolderId parentFolderId,
string queryString,
ViewBase view,
Grouping groupBy,
CancellationToken token = default
)
Public Function FindItems (
parentFolderId As FolderId,
queryString As String,
view As ViewBase,
groupBy As Grouping,
Optional token As CancellationToken = Nothing
) As Task(Of GroupedFindItemsResults(Of Item))
public:
Task<GroupedFindItemsResults<Item^>^>^ FindItems(
FolderId^ parentFolderId,
String^ queryString,
ViewBase^ view,
Grouping^ groupBy,
CancellationToken token = CancellationToken()
)
member FindItems :
parentFolderId : FolderId *
queryString : string *
view : ViewBase *
groupBy : Grouping *
?token : CancellationToken
(* Defaults:
let _token = defaultArg token new CancellationToken()
*)
-> Task<GroupedFindItemsResults<Item>>
- parentFolderId FolderId
- The Id of the folder in which to search for items.
- queryString String
- query string to be used for indexed search
- view ViewBase
- The view controlling the number of items returned.
- groupBy Grouping
- The group by clause.
- token CancellationToken (Optional)
-
TaskGroupedFindItemsResultsItemA list of items containing the contents of the specified folder.