【发布时间】:2012-12-21 16:44:40
【问题描述】:
我正在使用 EWS 托管 API 2.0 创建 Appontment。它工作正常。但也想更新现有约会。 我读到我需要约会 ID 来指定应该编辑哪个约会。但是身份证在哪里?
这是我创建约会的方法:
'Creates the Appointment
Dim appointment As New EWS.Appointment(esb)
appointment.Subject = txtThema.Text
appointment.Body = txtBemerkung.Text
appointment.Start = Von
appointment.End = Bis
appointment.Location = lbRaumInfo.Text
'Adds the Attendees
For i = 1 To emaillist.Length - 1
appointment.RequiredAttendees.Add(emaillist(i))
Next
'Sending
appointment.Save(EWS.SendInvitationsMode.SendToAllAndSaveCopy)
【问题讨论】:
标签: asp.net exchange-server exchangewebservices