AppointmentBindToOccurrence(ExchangeService, ItemId, Int32) - метод
Binds to an occurence of an existing appointment and loads its first class properties.
Calling this method results in a call to EWS.
Пространство имён: Tessa.Exchange.WebServices.DataСборка: Tessa.Server (в Tessa.Server.dll) Версия: 3.6.0.22
public static Task<Appointment> BindToOccurrence(
ExchangeService service,
ItemId recurringMasterId,
int occurenceIndex
)
Public Shared Function BindToOccurrence (
service As ExchangeService,
recurringMasterId As ItemId,
occurenceIndex As Integer
) As Task(Of Appointment)
public:
static Task<Appointment^>^ BindToOccurrence(
ExchangeService^ service,
ItemId^ recurringMasterId,
int occurenceIndex
)
static member BindToOccurrence :
service : ExchangeService *
recurringMasterId : ItemId *
occurenceIndex : int -> Task<Appointment>
- service ExchangeService
- The service to use to bind to the appointment.
- recurringMasterId ItemId
- The Id of the recurring master that the index represents an occurrence of.
- occurenceIndex Int32
- The index of the occurrence.
TaskAppointmentAn Appointment instance representing the appointment occurence corresponding to the specified occurence index .