處理C# hook程式的SEHException異常

來源:互聯網
上載者:User
在給Word程式添加hook程式時出現了'System.Runtime.InteropServices.SEHException' 異常,異常詳細資料為

'System.Runtime.InteropServices.SEHException' occurred in Unknown Module.

Additional information: External component has thrown an exception.

An exception 'System.NullReferenceException' has occured in...

追蹤了很久也找不到問題所在,只是知道異常出現在hook程式中,並切程式一開始並不出現異常,過一段時間之後才會出現異常。

下面是原來的代碼:
public void SetUpHookProgram()

        {

            HookProc windowCallBack = new HookProc(KeyboardProc);

            m_intHookPtr = Win32API.SetWindowsHookEx(HookType.WH_KEYBOARD ,windowCallBack,IntPtr.Zero, AppDomain.GetCurrentThreadId());


            //If SetWindowsHookEx fails.

            if(m_intHookPtr == 0 )

            {

                Debug.WriteLine("SetWindowsHookEx Failed");

                return;

            }

        }

最後懷疑是記憶體回收行程的問題,懷疑他把windowCallback給回收了:

更改代碼,把windowCallback作為類成員,在建構函式中初始化

/**//// <summary>

        /// setup hook program to deal with word document

        /// </summary>

        public void SetUpHookProgram()

        {

                       //m_objHookProc是類的成員,在建構函式中初始化

            m_intHookPtr = Win32API.SetWindowsHookEx(HookType.WH_KEYBOARD ,m_objHookProc,IntPtr.Zero, AppDomain.GetCurrentThreadId());


            //If SetWindowsHookEx fails.

            if(m_intHookPtr == 0 )

            {

                Debug.WriteLine("SetWindowsHookEx Failed");

                return;

            }

        }


問題解決。 

結論:使用Window API時,如果需要傳入Delegete作為參數,要自己保證Delegete的生命週期足夠長,這種情況下最好聲明為類成員,因為如果你聲明為局部變數,所在範圍執行結束,Delegete會被回收。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.