.NET(C#):關於進程退出的事件

來源:互聯網
上載者:User

對於當前程式,Process.Exited事件並不起作用,如下代碼:

static void Main()

{

    var pro = Process.GetCurrentProcess();

    pro.EnableRaisingEvents = true;

    pro.Exited += new EventHandler(pro_Exited);

}

 

static void pro_Exited(object sender, EventArgs e)

{

    throw new NotImplementedException();

}

結果不會有任何異常拋出。

 

解決方案是使用AppDomain.ProcessExit,當預設應用程式定義域由於進程退出而卸載時,該事件會被調用:

static void Main()

{

    AppDomain.CurrentDomain.ProcessExit += new EventHandler(CurrentDomain_ProcessExit);

}

 

static void CurrentDomain_ProcessExit(object sender, EventArgs e)

{

    throw new NotImplementedException();

}

運行代碼,異常會順利拋出。

 

但是如果進程遭到強制退出,上面的事件都不會被啟動並執行。

如果用一個程式監控另一個程式的Process.Exited事件,即使另一個進程被強制結束,Process.Exited仍然會啟動並執行。

代碼:

static void Main()

{

    //開啟記事本

    var pro = new Process();

    pro.StartInfo.FileName = "notepad";

    pro.EnableRaisingEvents = true;

    pro.Exited += new EventHandler(pro_Exited);

    pro.Start();

    pro.WaitForExit();

}

 

static void pro_Exited(object sender, EventArgs e)

{

    Console.WriteLine("另一個進程已被結束");

}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.