Created
November 5, 2012 23:59
-
-
Save sandrinodimattia/4021251 to your computer and use it in GitHub Desktop.
Simulate long start
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Global : HttpApplication | |
| { | |
| void Application_Start(object sender, EventArgs e) | |
| { | |
| Thread.Sleep(10 * 1000); | |
| } | |
| void Application_End(object sender, EventArgs e) | |
| { | |
| // Code that runs on application shutdown | |
| } | |
| void Application_Error(object sender, EventArgs e) | |
| { | |
| // Code that runs when an unhandled error occurs | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment