使用任何Microsoft Outlook版本在C#中读取Outlook联系人

本文关键字:Outlook 读取 联系人 版本 任何 Microsoft | 更新日期: 2023-09-27 18:20:16

我曾尝试使用Microsoft Outlook 15.0对象库DLL读取Microsoft Outlook联系人,它在本地工作;当谈到客户端时,我们不知道客户端使用的是什么版本的Outlook。如果每个客户端都有不同版本的Outlook,如何阅读?

我想阅读任何使用C#的Microsoft Outlook版本的联系人。

如果你有任何开源代码,它会有很大帮助。

请查看我的代码,并帮助我哪里做错了。

using System;
using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading;
using System.Runtime.InteropServices;
using MsOutlook = Microsoft.Office.Interop.Outlook;
namespace Test
{
    public class OutlookMailManager : IDisposable
    {
        public OutlookMailManager() { }

        /// <summary>
        /// Get MailContacts From Google (Gmail) using the provided username and password.
        /// </summary>
        /// <param name="maxEnries">Total number of entries to return</param>
        /// <returns>The addressbook entries</returns>
        public string GetOutlookMailContacts(int maxEnries)
        {
            MsOutlook.ApplicationClass OutlookApplication = new MsOutlook.ApplicationClass();
            MsOutlook.NameSpace outlookNameSpace = OutlookApplication.GetNamespace("MAPI");
            MsOutlook.MAPIFolder contactsCollection = outlookNameSpace.GetDefaultFolder(MsOutlook.OlDefaultFolders.olFolderContacts);
            Microsoft.Office.Interop.Outlook.Items folderItems = contactsCollection.Items;
            string rtnStr = "";
            if (folderItems.Count > 0)
            {
                for (int i = 1; folderItems.Count >= i; i++)
                {
                    object contactObj = folderItems[i];
                    if (contactObj is MsOutlook.ContactItem)
                    {
                        MsOutlook.ContactItem contact = (MsOutlook.ContactItem)contactObj;
                        rtnStr += contact.FullName + " (" + contact.BusinessTelephoneNumber + ")'n";
                    }
                    Marshal.ReleaseComObject(contactObj);
                    if (i == maxEnries) break;
                }
            }
            Marshal.ReleaseComObject(folderItems);
            Marshal.ReleaseComObject(contactsCollection);
            Marshal.ReleaseComObject(outlookNameSpace);
            return rtnStr;
        }
    }

}

使用任何Microsoft Outlook版本在C#中读取Outlook联系人

您只需要使用与您需要支持的最低Outlook版本相对应的PIA。因此,您将确保只使用所有Outlook版本中存在的属性和方法。有关示例项目,请参阅C#应用程序自动化Outlook(CSAutomateOutlook)。

目前它与我的Outlook 2003版本配合良好签出这个代码,但我还没有测试不同的outlook版本。但是

在引用中添加Microsoft.Office.Interop.Outlook dll

    Microsoft.Office.Interop.Outlook.Items OutlookItems;
    Microsoft.Office.Interop.Outlook.Application outlookObj;
    MAPIFolder Folder_Contacts;
    private void Form1_Load(object sender, EventArgs e)
    {
        outlookObj = new Microsoft.Office.Interop.Outlook.Application();
        Folder_Contacts = (MAPIFolder)outlookObj.Session.GetDefaultFolder(OlDefaultFolders.olFolderContacts);
        OutlookItems = Folder_Contacts.Items;
        for (int i = 0; i < OutlookItems.Count; i++)
        {
            Microsoft.Office.Interop.Outlook.ContactItem contact = (Microsoft.Office.Interop.Outlook.ContactItem)OutlookItems[i + 1];
      MessageBox.Show("FirstName:"contact.FirstName +" "+"LastName:"+contact.LastName +" "+"Emailid:"+contact.Email1Address);  
  }
}