Outlook 2010设置: Exchange帐户#1 (域A) Exchange帐户#2 (域A) Exchange帐户#3 (域B)
Windows 8企业版计算机。我已登录到域A。我收到了所有Exchange帐户上的接收/发送电子邮件。每当我创建会议请求时,Exchange帐户#3都不会读取自定义用户属性值。对于this.FormRegionShowing事件上的区域控件,应填充null或空白的values.The代码。这两个域是相互联合的。我被难住了。
Textbox1.Text = (string)appointmentItem.ItemProperties[PropertyVariables.Property1].Value;
Textbox2.Text = (string)appointmentItem.ItemProperties[PropertyVariables.Property2].Value;
Checkbox1.Checked = (bool)appointmentItem.ItemProperties[PropertyVariables.Property3].Value;发布于 2013-04-15 13:02:00
这是意料之中的-当会议邀请/更新通过SMTP发送时,它会被转换为iCal,并且所有MAPI特定的属性都会被剥离。
您可以尝试设置一个特殊的Outlook属性(使用MeetingItem.PropertyAccessor的DASL http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-C000-000000000046}/8582000B),但只能在UseTnef事件中执行此操作(因为MeetingItem是由Outlook创建的,而不是您的代码)。
https://stackoverflow.com/questions/16005390
复制相似问题