0

我遇到了一个问题,如果我的应用程序忙/无响应/因断点暂停,即使我收到的邮件事件处理程序早已返回,它也会导致 Outlook 停止。

我整理了一个小测试用例:

using System;
using System.ComponentModel;
using System.Runtime.InteropServices;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Office.Interop.Outlook;

namespace OutlookPerfTest
{
    class Program
    {
        private static Application app;
        private static NameSpace ns;

        static void Main(string[] args)
        {
            Type olType = Type.GetTypeFromProgID("Outlook.Application", false);

            app = Activator.CreateInstance(olType) as Application;
            ns = app.GetNamespace("MAPI");
            ns.Logon(null, null, false, false);

            app.NewMailEx += app_NewMailEx;

            for (; ; )
            { Thread.Sleep(10000); }
        }

        static void app_NewMailEx(string EntryIDCollection)
        {
            Console.WriteLine("New mail event triggered, running on background worker...");
            var bg = new BackgroundWorker();
            bg.DoWork += bg_DoWork;
            bg.RunWorkerAsync(EntryIDCollection);
            Console.WriteLine("New mail event ended, returning");
        }

        static void bg_DoWork(object sender, DoWorkEventArgs e)
        {
            Thread.Sleep(5000);

            Console.WriteLine("New mail thread started");

            string EntryIDCollection = (string)e.Argument;

            foreach (var id in EntryIDCollection.Split(','))
            {
                if (ns.GetItemFromID(id) is MailItem)
                {
                    Console.WriteLine(id + " is a mail item");
                }
            }

            Console.WriteLine("New mail thread Ended");
        }
    }
}

Thread.Sleep(5000);展望期间保持快乐和响应。到Console.WriteLine调用以下内容时,原始app_NewMailEx事件处理程序早已返回。

但是,如果我在那条线上断点,或者以其他方式锁定我的应用程序来执行一些密集的任务 - 即使事件没有被重新触发,outlooks 在这段时间内仍然没有响应。

如果我在消息到达时删除事件处理程序,并在完成后重新添加它,bg_DoWork那么它会缓解问题 - 但这意味着如果消息在这两次到达之间会丢失。

为什么会这样?在这种情况下,我怎样才能阻止前景变得反应迟钝?

4

1 回答 1

0

这是一个命令行应用程序,它不运行 COM 使用的 Windows 消息泵。你在 GUI 应用程序中使用过同样的问题吗?

于 2013-02-01T13:47:04.067 回答