- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在使用 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 插件,如果该消息定义了这个 ExtendedPropertyDefinition
名称,它需要评估每次消息点击,但我不知道如何从中恢复扩展属性使用 Outlook 类的 outlook 插件。
我不介意是否必须使用另一种属性才能从两个框架访问。
我曾尝试在 Outlook 中使用以下属性,但没有成功;
item.Userproperties;
item.PropertyAccesor.GetProperty("Archivado");
item.ItemProperties;
最佳答案
好吧,我终于明白了。我必须使用 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");
关于c# - 从 Outlook 插件中的 EWS 获取 ExtendedPropertyDefinition 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15153191/
很像 this question 中的示例在制作 ExtendedPropertyDefinition 时,我在网上看到许多使用魔数(Magic Number)的代码片段。例子: Dim PR_DEL
我正在使用 EWS 网络服务对邮箱进行自动处理,并将 ExtendedPropertyDefinition 分配给这样的消息: Microsoft.Exchange.WebServices.Data.
在研究如何使用 Exchange Web 服务时,我看到了这样的例子 Dim PR_DELETED_ON As New ExtendedPropertyDefinition(26255, MapiPr
我是一名优秀的程序员,十分优秀!