如何在outlook插件中模拟当前的outlook用户(.NET代码)
我有一个基于 .net 的 Outlook 插件,它将使用存储的凭据(用户名和当前密码)来通信交换 Web 服务。现在我想删除这种依赖性并模拟当前的 Outlook 用户。我该怎么做?
I am having a .net based outlook addin that will communicate exchange web service using stored credentials (user name and current password). Now i wanna remove this dependacy and impersonate current outlook user. How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不会从 Outlook 获取当前用户名。除非用户使用 Windows 身份验证登录 Outlook,在这种情况下,您可以简单地使用 CredentialCache.DefaultNetworkCredentials。
为什么使用 EWS 与 Exchange 通信?相反,您可以使用 Outlook 对象模型。
You won't get the current username from Outlook. Unless the user signed in to Outlook using Windows Authentication, in this case you can simply use CredentialCache.DefaultNetworkCredentials.
Why are you using EWS to communicate with Exchange? Instead you could use the Outlook object model.