我写了OutllokAddin
。在电子邮件中,我附了一封电子邮件草稿。当我打开电子邮件并尝试打开附件草稿电子邮件时,出现以下错误。
引发异常:
“ System.UnauthorizedAccessException”在 HP.HPRM.OfficeIntegration.Outlook.dll附加信息: 属性 “ http://schemas.microsoft.com/mapi/string/ {00020386-0000-0000-C000-000000000046} / CheckInInfoID” 不支持此操作。
下面是我的代码,其中SetProperty引发错误。
Interop.PropertyAccessor propertyAccessor = null;
try
{
propertyAccessor = this.GetPropertyAccessor();
propertyAccessor.SetProperty(propString, value);
}
我在Office 2016中已经遇到了这个问题。我相信在Office 2019中也会重蹈覆辙。
当我创建新电子邮件时,没有看到该错误。仅当我打开附件时,我才会收到错误消息。