Created
April 15, 2016 02:29
-
-
Save azechi/2f00511e705f77bbc8143f7b57221ec1 to your computer and use it in GitHub Desktop.
ASP.NET PreApplicationStartMethod
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
| using System.Web; | |
| [assembly: PreApplicationStartMethod(typeof(Startup), "PreApplicationStart")] | |
| public static class Startup | |
| { | |
| public static void PreApplicationStart() | |
| { | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment