加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

c# – 使用Visual Studio枚举Outlook邮箱

发布时间:2020-12-15 08:27:03 所属栏目:百科 来源:网络整理
导读:我有以下类,旨在返回文件夹中所有电子邮件的主题行 它是针对运行在Windows 7 64位上的Outlook 2007的Visual Studio 2008 using System;using System.Windows;using System.Collections.Generic;using System.Linq;using System.Text;using Microsoft.Office.
我有以下类,旨在返回文件夹中所有电子邮件的主题行

它是针对运行在Windows 7 64位上的Outlook 2007的Visual Studio 2008

using System;
using System.Windows;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Office.Interop.Outlook;

namespace MarketingEmails
{
public class MailUtils
{

  public static string[] processMailMessages(object outlookFolder)
    // Given an Outlook folder as an object reference,return
    // a list of all the email subjects in that folder
    {

        // Set a local object from the folder passed in
        Folder theMailFolder = (Folder)outlookFolder;

        string[] listSubjects = new string[theMailFolder.Items.Count];
        int itemCount = 0;

        // Now process the MAIL items
        foreach (MailItem oItem in theMailFolder.Items)
        {
            listSubjects[itemCount] = oItem.Subject.ToString();
            itemCount++;
        }
        return listSubjects;
    }

}

}

但是代码抛出以下异常:

无法将“System .__ ComObject”类型的COM对象强制转换为接口类型“Microsoft.Office.Interop.Outlook.MailItem”.此操作失败,因为由于以下错误,IID为“{00063034-0000-0000-C000-000000000046}”的接口的COM组件上的QueryInterface调用失败:不支持此类接口(HRESULT异常:0x80004002(E_NOINTERFACE)) .

我理解发生的错误是因为它试图处理所选邮箱中的ReportItem.

我不明白的是,当我指定时,为什么尝试ro处理非邮件项目:

foreach (MailItem oItem in theMailFolder.Items)

如果我希望它处理邮箱中的报告项条目,我会写:

foreach (ReportItem oItem in theMailFolder.Items)

我非常想知道这是一个错误还是只是我的误解

问候,
Nigel Ainscoe

解决方法

原因是集合Items包含MailItem和ReportItem实例.在左侧指定MailItem不会过滤列表,它只是说明您希望列表中的类型.

你需要做的是过滤你想要的类型

foreach ( MailItem oItem in theMailFolder.Items.OfType<MailItem>()) {
  ..
}

OfType方法仅返回集合中与该特定类型匹配的值.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读