Exchange Web Services 2010 / 自动完成或建议的联系人
我正在尝试找到一种方法来模仿 Outlook 2010(及早期版本)自动完成的行为。据我所知,自动完成缓存存储在本地文件(.n2k 文件)中。另外,还有一个“建议的联系人”,这似乎也是我正在寻找的。 http://www.windowsitpro.com/article /outlook/outlook-2010-autocomplete-cache-and-suggested-contacts
有没有办法使用 Exchange Web 连接到自动完成缓存或建议联系人使用 C# 的服务 1.2 API?有人知道代码示例或文档吗?
I am trying to find a way to mimic the behaviour of Outlook 2010 (and earlier versions) of autocomplete. Of what I can find, the Autocomplete Cache is stored on a local file (.n2k-file). Also, there is a Suggested Contacts which also seems to be what I am looking for.
http://www.windowsitpro.com/article/outlook/outlook-2010-autocomplete-cache-and-suggested-contacts
Is there any way to do hook up to the Autocomplete cache or Suggested Contacts this using Exchange Web Services 1.2 API with C#? Does anybody know a code example or documentation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 EWS 托管 API 以与 Outlook Web App 相同的方式解析名称(Outlook 使用其自己的 Active Directory 连接来解析名称)。
这将允许您在用户邮箱的目录或联系人文件夹中查找与“Joe”匹配的所有用户。
请参阅此处的文档。
You can use the EWS Managed API to resolve names in the same way that Outlook Web App does (Outlook uses its own connection to Active Directory to resolve names).
This will allow you to find all the users that match "Joe" in the directory or in a contacts folder in the user's mailbox.
See the docs here.