我正在编写一个简单的控制台应用程序来监控特定的交换邮箱,当收到满足特定条件的电子邮件时,该应用程序将下载一个 XML 文件附件,并将电子邮件存档。
我已经连接到 EWS OK,并且已经能够循环浏览任何电子邮件,但是在创建一个可以用来访问附件的 EmailMessage 对象时我正在苦苦挣扎。
在下面的示例代码中,该EmailMessage message = EmailMessage.Bind(...)
行执行没有错误,但没有返回有效消息,因此当我访问属性或方法时,我收到错误:“对象引用未设置为对象的实例”。
我是 C# 的新手,更不用说 EWS,所以我很难知道从哪里开始......
代码片段:
public static void FindItems()
{
try
{
ItemView view = new ItemView(10);
view.OrderBy.Add(ItemSchema.DateTimeReceived, SortDirection.Ascending);
view.PropertySet = new PropertySet(
BasePropertySet.IdOnly,
ItemSchema.Subject,
ItemSchema.DateTimeReceived);
findResults = service.FindItems(
WellKnownFolderName.Inbox,
new SearchFilter.SearchFilterCollection(
LogicalOperator.Or,
new SearchFilter.ContainsSubstring(ItemSchema.Subject, "Sales Enquiry")),
view);
log2.LogInfo("Total number of items found: " + findResults.TotalCount.ToString());
foreach (Item item in findResults)
{
log2.LogInfo(item.Id);
EmailMessage message = EmailMessage.Bind(service, item.Id, new PropertySet(BasePropertySet.IdOnly, ItemSchema.Attachments));
Console.WriteLine(message.Subject.ToString());
if (message.HasAttachments && message.Attachments[0] is FileAttachment)
{
FileAttachment fileAttachment = message.Attachments[0] as FileAttachment;
fileAttachment.Load("C:\\temp\\" + fileAttachment.Name);
fileAttachment.Load();
Console.WriteLine("FileName: " + fileAttachment.FileName);
}
}
}
catch (Exception ex)
{
log2.LogError(ex.InnerException);
}
}
我用于访问附件的代码直接来自MSDN,所以我希望它在那里...有什么想法吗?