C#使用EWS创建日历项目,如何获取结果?

C#使用EWS创建日历项目,如何获取结果?,第1张

概述我基于这个网站 http://msdn.microsoft.com/en-us/library/dd633661%28v=EXCHG.80%29.aspx构建了一个应用程序 appointment.Subject = "Status Meeting";appointment.Body = "The purpose of this meeting is to discuss status.";a 我基于这个网站 http://msdn.microsoft.com/en-us/library/dd633661%28v=EXCHG.80%29.aspx构建了一个应用程序
appointment.Subject = "Status Meeting";appointment.Body = "The purpose of this meeting is to discuss status.";appointment.Start = new DateTime(2009,3,1,9,0);appointment.End = appointment.Start.AddHours(2);appointment.Location = "Conf Room";appointment.requiredAttendees.Add("user1@contoso.com");appointment.requiredAttendees.Add("user2@contoso.com");appointment.OptionalAttendees.Add("user3@contoso.com");appointment.Save(SendInvitationsMode.SendToAllAndSavecopy);

我如何返回XML结果“…< t:ItemID ID =”AAMkADk =“ChangeKey =”DWAAAB“/> …”所以我以后可以用它来删除或编辑日历项目!?!

微软在整个框架中做了一个上帝的工作,但他们真的忘记了这件小事吗?

我找到了一些(对我来说不合逻辑)解决方案
http://blogs.msdn.com/b/exchangedev/archive/2010/02/25/determining-the-id-of-a-sent-message-by-using-extended-properties-with-the-ews-managed-api.aspx
我应该用它来解决这个问题吗?

干杯

解决方法 看起来你找到的解决方案并没有返回XMl结果,而且很好.解决方案正在做的是将唯一标识符作为ExtendedPropertyDeFinition附加到电子邮件中.然后,在发送之后,解决方案将搜索“已发送邮件”文件夹,以查找刚刚通过匹配发送电子邮件之前附加的唯一标识符发送的电子邮件的已保存副本.

然后写在博客上,

The following is the XML request that
is generated by calling FindItems in
the above code example.

<m:FindItem Traversal="Shallow">    <m:ItemShape>       <t:BaseShape>IDOnly</t:BaseShape>       <t:AdditionalPropertIEs>          <t:FIEldURI FIEldURI="item:Subject" />          <t:ExtendedFIEldURI PropertySetID="20b5c09f-7cad-44c6-bdbf-8fcbeea08544" Propertyname="MyExtendedPropertyname" PropertyType="String" />       </t:AdditionalPropertIEs>    </m:ItemShape>    <m:IndexedPageItemVIEw MaxEntrIEsReturned="5" Offset="0" BasePoint="Beginning" />    <m:Restriction>       <t:IsEqualTo>          <t:ExtendedFIEldURI PropertySetID="20b5c09f-7cad-44c6-bdbf-8fcbeea08544" Propertyname="MyExtendedPropertyname" PropertyType="String" />          <t:FIEldURIOrConstant>             <t:Constant Value="MyExtendedPropertyValue" />          </t:FIEldURIOrConstant>       </t:IsEqualTo>    </m:Restriction>    <m:ParentFolderIDs>       <t:distinguishedFolderID ID="sentitems" />    </m:ParentFolderIDs> </m:FindItem>

请注意包含唯一标识符的XML标记.

<t:ExtendedFIEldURI PropertySetID="20b5c09f-7cad-44c6-bdbf-8fcbeea08544" Propertyname="MyExtendedPropertyname" PropertyType="String" />
总结

以上是内存溢出为你收集整理的C#使用EWS创建日历项目,如何获取结果?全部内容,希望文章能够帮你解决C#使用EWS创建日历项目,如何获取结果?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1263538.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-08
下一篇 2022-06-08

发表评论

登录后才能评论

评论列表(0条)

保存