非常感谢任何帮助、链接或想法。谢谢!
总体目标
如何在 Exchange 2013 中查询特定折叠以读取每条消息的正文,以便我可以从自动警报中收集信息并写入 csv 文件?
具体问题我想不通
如何查询特定文件夹?
问题
我只能找到如何搜索收件箱的示例。我需要更改该语句以说出特定文件夹。
问题所在的当前代码部分
try
{
//read the subject line of the 10 most recently recieved emails in the inbox
FindItemsResults<Item> findResults = service.FindItems(WellKnownFolderName.Inbox, new ItemView(10));
foreach (Item item in findResults.Items)
{
Console.WriteLine(item.Subject);
}
}
catch (Exception e)
{
Console.WriteLine(e.Message.ToString());
Console.ReadLine();
}
Console.ReadLine();
问题线
FindItemsResults<Item> findResults = service.FindItems(WellKnownFolderName.Inbox, new ItemView(10));