ExchangeServiceFindAppointments(WellKnownFolderName, 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(
WellKnownFolderName parentFolderName,
CalendarView calendarView,
CancellationToken token = default
)
Public Function FindAppointments (
parentFolderName As WellKnownFolderName,
calendarView As CalendarView,
Optional token As CancellationToken = Nothing
) As Task(Of FindItemsResults(Of Appointment))
public:
Task<FindItemsResults<Appointment^>^>^ FindAppointments(
WellKnownFolderName parentFolderName,
CalendarView^ calendarView,
CancellationToken token = CancellationToken()
)
member FindAppointments :
parentFolderName : WellKnownFolderName *
calendarView : CalendarView *
?token : CancellationToken
(* Defaults:
let _token = defaultArg token new CancellationToken()
*)
-> Task<FindItemsResults<Appointment>>
- parentFolderName WellKnownFolderName
- The name 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.