VSTO Outlook添加。获取仲裁Exchange分发列表的主持人帐户

时间:2017-07-28 16:02:36

标签: outlook vsto exchange-server outlook-addin mapi

VSTO Outlook插件问题。

我获得了审核的Exchange分发列表,需要知道此列表的哪些成员是主持人 要知道列表是否已审核,我使用PidTagAddressBookModerationEnabled MAPI属性(它可以工作):

    var isModerated = MapiHelper.GetProperty(addressEntry, 
MapiProperty.PidTagAddressBookModerationEnabled);

我将此列表的所有成员都作为Outlook.Recipient班级成员。到目前为止我尝试过的,只是为了得到至少一些信息:

foreach (Outlook.Recipient recipient in mailItem.Recipients)
       {
          var try1 = MapiHelper.GetProperty(recipient, MapiProperty.PidTagAddressBookAuthorizedSenders);
          var try2 = MapiHelper.GetProperty(recipient, MapiProperty.PidTagAddressBookDistributionListMemberSubmitAccepted);
       }

即使收件人是主持人帐户,try1和try2也都是null。此外,我没有找到任何与在MAPI属性中查找审核帐户相关的内容。还有其他方式,我错过了什么吗?

谢谢!

0 个答案:

没有答案