我使用 EWA 在 VB.NET 中创建了一些约会。它工作正常。现在我想编辑约会(日期或主题)。
对于每次预订,我都将预订 ID 保存在预约的扩展属性中
' Create a definition for the extended property.
Dim extendedPropertyDefinition As New EWS.ExtendedPropertyDefinition(EWS.DefaultExtendedPropertySet.Appointment, EWS.MapiPropertyType.String)
' Add the extended property to an e-mail message object named "appointment".
appointment.SetExtendedProperty(extendedPropertyDefinition, buchungId)
例如,如何选择具有正确预订 ID 的约会并编辑主题?