我正在使用EWS网络服务对邮箱进行自动处理,并将ExtendedPropertyDefinition
分配给这样的邮件:
Microsoft.Exchange.WebServices.Data.ExtendedPropertyDefinition extendedPropertyDefinition =
new Microsoft.Exchange.WebServices.Data.ExtendedPropertyDefinition(DefaultExtendedPropertySet.Common, "Archivado", MapiPropertyType.String);
msgComplete.SetExtendedProperty(extendedPropertyDefinition, iddoc);
msgComplete.Update(ConflictResolutionMode.AlwaysOverwrite);
另一方面,我正在开发一个Outlook Addin,需要对每条消息点击进行评估,如果该消息定义了此ExtendedPropertyDefinition
名称,但我不知道如何从outlook addin中恢复Extended属性Outlook类。
我不介意如果我必须使用其他类型的属性才能从两个框架中访问。
我尝试在Outlook中使用以下属性但没有运气;
item.Userproperties;
item.PropertyAccesor.GetProperty("Archivado");
item.ItemProperties;
答案 0 :(得分:2)
好的,最后我明白了。我不得不使用Guid创建ExtendedPropertyDefinition 并使用属性上的模式从outlook中恢复它,如下所示:
//Setting the property with Exchange webservice:
string guid = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx";
Guid MY_PROPERTY_SET_GUID = new Guid(guid);
Microsoft.Exchange.WebServices.Data.ExtendedPropertyDefinition extendedPropertyDefinition =
new Microsoft.Exchange.WebServices.Data.ExtendedPropertyDefinition(MY_PROPERTY_SET_GUID, "Archivado", MapiPropertyType.String);
//Recover the property using Outlook:
Outlook.MailItem item = (Outlook.MailItem)e.OutlookItem;
Outlook.UserProperties mailUserProperties = item.UserProperties;
dynamic property=item.PropertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/string/{Outlook.MailItem item = (Outlook.MailItem)e.OutlookItem;
Outlook.UserProperties mailUserProperties = item.UserProperties;
dynamic property=item.PropertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/string/{xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}/Archivado");