Skip to content

Instantly share code, notes, and snippets.

@azechi
Created April 15, 2016 02:29
Show Gist options
  • Select an option

  • Save azechi/2f00511e705f77bbc8143f7b57221ec1 to your computer and use it in GitHub Desktop.

Select an option

Save azechi/2f00511e705f77bbc8143f7b57221ec1 to your computer and use it in GitHub Desktop.
ASP.NET PreApplicationStartMethod
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