Outlook items.restrict 给出错误

发布于 2024-12-09 23:53:15 字数 216 浏览 0 评论 0原文

我正在尝试以编程方式从 Outlook 获取邮件,其中接收时间大于某个时间,例如:

oItems.Restrict("[ReceivedTime] > " + receivedTime.ToString("yyyy-MM-dd HH:mm:ss"));

“receivedTime”是将传递给函数的时间。但它给出了错误。知道如何做到这一点吗?

I am trying to get the mails from outlook by programmatically which received time is greater than a certain time like:

oItems.Restrict("[ReceivedTime] > " + receivedTime.ToString("yyyy-MM-dd HH:mm:ss"));

"receivedTime" is the time which will be passed to the function. But it gives error. Any idea how to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

素衣风尘叹 2024-12-16 23:53:15

您在值周围缺少单引号,它应该是

oItems.Restrict("[ReceivedTime] > '" + receivedTime.ToString("yyyy-MM-dd HH:mm:ss") + "'"); 

来源:http://msdn.microsoft.com/en-us/library/aa210275(v=office.11​​).aspx

You are missing single quotes around the value, it should be

oItems.Restrict("[ReceivedTime] > '" + receivedTime.ToString("yyyy-MM-dd HH:mm:ss") + "'"); 

Source: http://msdn.microsoft.com/en-us/library/aa210275(v=office.11).aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文