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.5.0.19
Синтаксис 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
- Тип: Tessa.Exchange.WebServices.DataFolderId
Id of the folder being searched - searchFilter
- Тип: Tessa.Exchange.WebServices.DataSearchFilter
The search filter. Available search filter classes
include SearchFilter.IsEqualTo, SearchFilter.ContainsSubstring and
SearchFilter.SearchFilterCollection - view
- Тип: Tessa.Exchange.WebServices.DataViewBase
The view which defines the number of persona being returned - queryString
- Тип: SystemString
The query string for which the search is being performed - token (Optional)
- Тип: System.ThreadingCancellationToken
Возвращаемое значение
Тип:
TaskICollectionPersonaA collection of personas matching the search conditions
См. также