ExchangeServiceFindItems(FolderId, String, ViewBase, CancellationToken) - метод
Obtains a 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<FindItemsResults<Item>> FindItems(
FolderId parentFolderId,
string queryString,
ViewBase view,
CancellationToken token = default
)
Public Function FindItems (
parentFolderId As FolderId,
queryString As String,
view As ViewBase,
Optional token As CancellationToken = Nothing
) As Task(Of FindItemsResults(Of Item))
public:
Task<FindItemsResults<Item^>^>^ FindItems(
FolderId^ parentFolderId,
String^ queryString,
ViewBase^ view,
CancellationToken token = CancellationToken()
)
member FindItems :
parentFolderId : FolderId *
queryString : string *
view : ViewBase *
?token : CancellationToken
(* Defaults:
let _token = defaultArg token new CancellationToken()
*)
-> Task<FindItemsResults<Item>>
- parentFolderId FolderId
- The Id of the folder in which to search for items.
- queryString String
- the search string to be used for indexed search, if any.
- view ViewBase
- The view controlling the number of items returned.
- token CancellationToken (Optional)
-
TaskFindItemsResultsItemAn object representing the results of the search operation.