在使用EWS检索约会时,主题包含组织者名称
本文关键字:包含 组织者 EWS 检索 约会 | 更新日期: 2023-09-27 18:10:34
我在office 365帐户中检索EWS对特定房间的所有约会。当返回约会时,约会的subject属性包含组织者的名称,而不是我给约会的主题。
我做错了什么吗?我如何做的代码示例:
ExchangeService service = new ExchangeService();
service.Credentials = new WebCredentials("username", "password");
service.Url = new Uri("https://outlook.office365.com/EWS/Exchange.asmx");
DateTime StartDate = DateTime.Today.AddDays(-30);
DateTime EndDate = DateTime.Today.AddDays(60);
CalendarView cv = new CalendarView(StartDate, EndDate);
FolderId CalendarFolderId = new FolderId(WellKnownFolderName.Calendar, "room1@company.com");
CalendarFolder calendar = CalendarFolder.Bind(service, CalendarFolderId);
FindItemsResults<Appointment> appointments = calendar.FindAppointments(cv);
foreach (Appointment appointment in appointments.ToList())
{
//this contains the wrong value.....
string subject = appointment.Subject;
//this is correct and has the same value as the incorrect subject
string organizer = appointment.Organizer.Name;
}
您的代码没有任何问题,但这与邮箱的配置方式有关。使用room Mailbox,您可以使用Remote Power-shell和set-calendarprocessing命令配置自动处理设置,请参见http://technet.microsoft.com/en-us/library/dd335046(v=exchg.150).aspx eg
对于您的特定问题,邮箱已使用deleetessubject参数配置,该参数"指定是否删除或保留传入会议请求的主题"。此参数的有效输入为$true或$false。默认值为"$true",而AddOrganizerToSubject参数"指定是否使用会议组织者的姓名作为会议请求的主题"。此参数的有效输入为$true或$false。默认值为"$true"。"
您将无法修复现有数据,但如果您重新配置邮箱,则发送的任何新约会将按照您希望的方式显示
干杯格伦