所以我正在使用给定的 ICalUid 创建 Exchange (2007) 约会:
var app = new Appointment(svc);
app.ICalUid = id;
app.Subject = "Test Appointment";
app.Recurrence = new Recurrence.DailyPattern(DateTime.Now, 3);
app.RequiredAttendees.Add("mstum@example.com");
app.AllowNewTimeProposal = false;
app.Body = new MessageBody(BodyType.HTML, "This is a <b>Test!</b>");
app.Save();
稍后,我想更新那个约会,此时我需要通过 ICalUid 找到它。
但是,似乎没有办法做到这一点?我Appointment.Bind
只能针对我在更新时没有的 Exchange ID 使用(存储它是非常不切实际的)
我可以使用相同的 IcalUid 创建一个新约会,这看起来像是一个更新,但要求再次接受/拒绝,而不是只显示“不需要更新”。
有没有合适的方法来做到这一点?