如何获取通过 EWS 创建的会议的 appointmentId,然后用它来更新
how to get the appointmentId for a meeting created through EWS, then use it to update later
我正在尝试使用 microsft 的 EWS api 服务来处理会议请求。但现在我想更新之前在 EWS 中创建的会议的时间。
我真的找不到办法做到这一点。
Appointment meeting = Appointment.Bind(service, meetingId, new PropertySet(AppointmentSchema.Subject,
AppointmentSchema.Location,
AppointmentSchema.RequiredAttendees,
AppointmentSchema.Resources));
以上代码摘自https://msdn.microsoft.com/en-us/library/office/dn495610(v=exchg.150).aspx
我不知道 appointmentId 在那里是什么意思。我如何获得它。
这是您要访问的约会的 EWSId (ItemId) https://msdn.microsoft.com/en-us/library/office/dd634072(v=exchg.80).aspx . You need to using FindItems (or FindAppointment) to find the existing appointment and bind to this and update it eg https://msdn.microsoft.com/en-us/library/office/dn495614(v=exchg.150).aspx or using a SearchFilter https://msdn.microsoft.com/en-us/library/office/dn579422%28v=exchg.150%29.aspx
干杯
格伦
我正在尝试使用 microsft 的 EWS api 服务来处理会议请求。但现在我想更新之前在 EWS 中创建的会议的时间。 我真的找不到办法做到这一点。
Appointment meeting = Appointment.Bind(service, meetingId, new PropertySet(AppointmentSchema.Subject,
AppointmentSchema.Location,
AppointmentSchema.RequiredAttendees,
AppointmentSchema.Resources));
以上代码摘自https://msdn.microsoft.com/en-us/library/office/dn495610(v=exchg.150).aspx
我不知道 appointmentId 在那里是什么意思。我如何获得它。
这是您要访问的约会的 EWSId (ItemId) https://msdn.microsoft.com/en-us/library/office/dd634072(v=exchg.80).aspx . You need to using FindItems (or FindAppointment) to find the existing appointment and bind to this and update it eg https://msdn.microsoft.com/en-us/library/office/dn495614(v=exchg.150).aspx or using a SearchFilter https://msdn.microsoft.com/en-us/library/office/dn579422%28v=exchg.150%29.aspx
干杯 格伦