【发布时间】:2013-02-01 11:48:23
【问题描述】:
是否可以保存ItemAttachment?对于FileAttachment,我们使用以下 EWS 托管 API 代码进行保存,
if(attachment is FileAttachment)
{
FileAttachment fAttachment = new FileAttachment();
fAttachment.Load("D:\\Stream" + fAttachment.Name);
}
对于ItemAttachment呢?我们如何将ItemAttachment这样保存在指定文件中?
【问题讨论】:
-
您使用什么版本的 Microsoft.Exchange.WebServices.dll?
标签: c# exchangewebservices ews-managed-api