我必须使用EWS为某些Outlook联系人字段添加值。我已经成功使用'用户字段1' this article 。问题是我需要在其他字段中插入值(例如'Miscellaneous Fields'中的'Account'),我需要知道这些属性的id。 这是我用来创建属性的代码,我需要设置第二个参数:
Guid myGuid = new Guid("{00062004-0000-0000-C000-000000000046}");
ExtendedPropertyDefinition myDef = new ExtendedPropertyDefinition(myGuid, 0x804F, MapiPropertyType.String);
答案 0 :(得分:1)
您已接近,PropertyId
的值为Account
。
PropertyId
为{{1}} 0x3A00 。
same MSDN article you referenced也是您寻找物业名称或ID的朋友。