Skip to content

Instantly share code, notes, and snippets.

@fabriciosanchez
Created May 26, 2014 19:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fabriciosanchez/fce19172b3955cfa2ffe to your computer and use it in GitHub Desktop.
Save fabriciosanchez/fce19172b3955cfa2ffe to your computer and use it in GitHub Desktop.
Adicionando classe ao pipeline
public class Startup
{
public void Configuration(IAppBuilder app)
{
app.Use<LoggerMiddleware>(new TraceLogger());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment