我有一个案例,我想将一些UserProperties保存到AppointmentItem但是(如果有任何收件人)它会弹出一个outlook对话框来发送它。 如何阻止此对话框。即使我有收件人,我应该能够保存AppointmentItem,但显然前景不会在不发送更新的情况下保存。 另一方面,在AppointmentItem上调用Send会关闭资源管理器窗口,我也无法找到如何防止它。
appointmentItem.UserProperties.Add("LastUpdated", OlUserPropertyType.olText, true);
appointmentItem.UserProperties["LastUpdated"].Value = DateTime.Now.ToString();
appointmentItem.Save(); // This line shows the prompt