ExchangeServiceFindAppointments(FolderId, CalendarView, CancellationToken) - метод
Obtains a list of appointments 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<Appointment>> FindAppointments(
FolderId parentFolderId,
CalendarView calendarView,
CancellationToken token = default
)
Public Function FindAppointments (
parentFolderId As FolderId,
calendarView As CalendarView,
Optional token As CancellationToken = Nothing
) As Task(Of FindItemsResults(Of Appointment))
public:
Task<FindItemsResults<Appointment^>^>^ FindAppointments(
FolderId^ parentFolderId,
CalendarView^ calendarView,
CancellationToken token = CancellationToken()
)
member FindAppointments :
parentFolderId : FolderId *
calendarView : CalendarView *
?token : CancellationToken
(* Defaults:
let _token = defaultArg token new CancellationToken()
*)
-> Task<FindItemsResults<Appointment>>
- parentFolderId FolderId
- The id of the calendar folder in which to search for items.
- calendarView CalendarView
- The calendar view controlling the number of appointments returned.
- token CancellationToken (Optional)
-
TaskFindItemsResultsAppointmentA collection of appointments representing the contents of the specified folder.