ExchangeServiceFindPeople(FolderId, SearchFilter, ViewBase, String, CancellationToken) - метод
This method is for search scenarios. Retrieves a set of personas satisfying the specified search conditions.
Пространство имён: Tessa.Exchange.WebServices.DataСборка: Tessa.Server (в Tessa.Server.dll) Версия: 3.6.0.22
public Task<ICollection<Persona>> FindPeople(
FolderId folderId,
SearchFilter searchFilter,
ViewBase view,
string queryString,
CancellationToken token = default
)
Public Function FindPeople (
folderId As FolderId,
searchFilter As SearchFilter,
view As ViewBase,
queryString As String,
Optional token As CancellationToken = Nothing
) As Task(Of ICollection(Of Persona))
public:
Task<ICollection<Persona^>^>^ FindPeople(
FolderId^ folderId,
SearchFilter^ searchFilter,
ViewBase^ view,
String^ queryString,
CancellationToken token = CancellationToken()
)
member FindPeople :
folderId : FolderId *
searchFilter : SearchFilter *
view : ViewBase *
queryString : string *
?token : CancellationToken
(* Defaults:
let _token = defaultArg token new CancellationToken()
*)
-> Task<ICollection<Persona>>
- folderId FolderId
- Id of the folder being searched
- searchFilter SearchFilter
- The search filter. Available search filter classes
include SearchFilter.IsEqualTo, SearchFilter.ContainsSubstring and
SearchFilter.SearchFilterCollection
- view ViewBase
- The view which defines the number of persona being returned
- queryString String
- The query string for which the search is being performed
- token CancellationToken (Optional)
-
TaskICollectionPersonaA collection of personas matching the search conditions