Skip to content

Instantly share code, notes, and snippets.

@bjartwolf
Created May 1, 2014 10:06
Show Gist options
  • Save bjartwolf/3b8f499816edf5227725 to your computer and use it in GitHub Desktop.
Save bjartwolf/3b8f499816edf5227725 to your computer and use it in GitHub Desktop.
public class Startup
{
public void Configuration(IAppBuilder appBuilder)
{
HttpConfiguration config = new HttpConfiguration();
config.MapHttpAttributeRoutes();
appBuilder.Use<AllCapsMiddleware.AllCaps>();
appBuilder.UseWebApi(config);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment