. Net (C #): Events related to process exit

Source: Internet
Author: User

The process. exited event does not work for the current program. The following code:

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 ();

}

No exception is thrown in the result.

 

The solution is to use appdomain. processexit. When the default application domain is uninstalled because the process exits, this event will be called:

Static void main ()

{

Appdomain. currentdomain. processexit + = new eventhandler (currentdomain_processexit );

}

 

Static void currentdomain_processexit (Object sender, eventargs E)

{

Throw new notimplementedexception ();

}

Run the code and the exception will be thrown.

 

However, if the process is forcibly exited, none of the above events will be run.

If one program is used to monitor the process. exited event of another program, process. exited will still run even if another process is forcibly terminated.

Code:

Static void main ()

{

// Open notepad

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 ("another process has ended ");

}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.