UseDefaultCredentials with Exchange Web Services

2019-05-12 16:41发布

I'm a pretty new programmer. One of the things I've been tasked with at work is getting our custom tools to create draft emails and drop them into the draft email folder of the user running the tool. We presently use Exchange Server 2010 (but are in the process of migrating over to Exchange Online).

This link talks about a UseDefaultCredentials but I can't seem to work out how to implement it. I created an ExchangeService object called service and managed to interact with our Exchange server using this for credentials:

service.Credentials = new WebCredentials("my login name", "my password");

I'd like to be able to eliminate that from the code and have it use the credentials of the logged-in user who is using the tool. Is that possible?

2条回答
叼着烟拽天下
2楼-- · 2019-05-12 17:26
ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2010);
service.Credentials = new WebCredentials(CredentialCache.DefaultNetworkCredentials);
查看更多
【Aperson】
3楼-- · 2019-05-12 17:30

if you use the defaultcredentials you can eliminate your posted code. Just set "UseDefaultCredentials" to True and don't set the Credentials manually. In this case the credentials of the User who is running your tool will be taken. I use that on my own and it works finde for me.

Greets, J

查看更多
登录 后发表回答