【发布时间】:2017-09-26 19:58:09
【问题描述】:
我想在我的 c# 应用程序中创建一个通用通讯组进行交换。
我正在使用此代码,但它只为特定帐户创建私人组。 (使用 EWS)
EWService = new ExchangeService();
EWService.Credentials = new WebCredentials(SA_mail, SA_password);
EWService.AutodiscoverUrl(SA_mail);
ContactGroup contactGroup = new ContactGroup(EWService);
contactGroup.DisplayName = "GRP_DIF_" + textBox1.Text;
contactGroup.Save();
如何创建交易所认可的通用通讯组?
【问题讨论】:
标签: c# exchange-server exchangewebservices