3

我在将 EWS 用于任务和提醒(特别是截止日期)时遇到了一些问题。

当我运行我的代码时,如下所示,该任务被添加到我的交换帐户中,我可以在 Outlook 中看到它。里面的所有数据看起来也不错。但是,如果我指定对任务进行提醒,它显示的截止日期是非常错误的。

通常是未来 17 小时,但我提供的屏幕截图显示它是未来 19 小时。我觉得很奇怪,如果我打开任务,截止日期看起来不错,但提醒说它应该在未来很长一段时间内到期。有任何想法吗?

截图:http ://s970.photobucket.com/albums/ae187/paulehn/?action=view¤t=ewstask.jpg

ExchangeVersion exchVersion = new ExchangeVersion();
exchVersion = ExchangeVersion.Exchange2007_SP1;
ExchangeService service = new ExchangeService(exchVersion);
service.UseDefaultCredentials = true;
service.Url = new Uri("https://mail.domain.com.au/ews/exchange.asmx");

Task task = new Task(service);
task.Subject = "Subject";
task.Body = new MessageBody(BodyType.HTML, "Body");
task.StartDate = DateTime.Today;
task.DueDate = DateTime.Now.AddHours(2);
task.ReminderDueBy = DateTime.Now;
task.ReminderMinutesBeforeStart = 15;
task.IsReminderSet = true;
task.Save();
4

2 回答 2

2

看来这实际上是 Outlook 的“功能”,而不是错误-

http://www.outlook-tips.net/archives/2009/20090623.htm

于 2010-04-30T02:08:26.643 回答
0

您可能应该确保所有日期和时间都在同一个时区。最好的方法是对所有事情都使用 UTC。

于 2021-02-24T19:51:23.890 回答