ExchangeServiceFindConversation(ViewBase, FolderId, String, Boolean, NullableMailboxSearchLocation, CancellationToken) - метод
Searches for and retrieves a collection of Conversations in the specified Folder.
Along with conversations, a list of highlight terms are returned.
Пространство имён: Tessa.Exchange.WebServices.DataСборка: Tessa.Server (в Tessa.Server.dll) Версия: 3.6.0.22
public Task<FindConversationResults> FindConversation(
ViewBase view,
FolderId folderId,
string queryString,
bool returnHighlightTerms,
MailboxSearchLocation? mailboxScope,
CancellationToken token = default
)
Public Function FindConversation (
view As ViewBase,
folderId As FolderId,
queryString As String,
returnHighlightTerms As Boolean,
mailboxScope As MailboxSearchLocation?,
Optional token As CancellationToken = Nothing
) As Task(Of FindConversationResults)
public:
Task<FindConversationResults^>^ FindConversation(
ViewBase^ view,
FolderId^ folderId,
String^ queryString,
bool returnHighlightTerms,
Nullable<MailboxSearchLocation> mailboxScope,
CancellationToken token = CancellationToken()
)
member FindConversation :
view : ViewBase *
folderId : FolderId *
queryString : string *
returnHighlightTerms : bool *
mailboxScope : Nullable<MailboxSearchLocation> *
?token : CancellationToken
(* Defaults:
let _token = defaultArg token new CancellationToken()
*)
-> Task<FindConversationResults>
- view ViewBase
- The view controlling the number of conversations returned.
- folderId FolderId
- The Id of the folder in which to search for conversations.
- queryString String
- The query string for which the search is being performed
- returnHighlightTerms Boolean
- Flag indicating if highlight terms should be returned in the response
- mailboxScope NullableMailboxSearchLocation
- The mailbox scope to reference.
- token CancellationToken (Optional)
-
TaskFindConversationResultsFindConversation results.