Skip to content

Instantly share code, notes, and snippets.

@beyond-code-github
Created December 2, 2013 15:51
Show Gist options
  • Select an option

  • Save beyond-code-github/7751538 to your computer and use it in GitHub Desktop.

Select an option

Save beyond-code-github/7751538 to your computer and use it in GitHub Desktop.
public class MyMiddleware
{
public Func<IDictionary<string, object>, Task> GetAppFunc(Func<IDictionary<string, object>, Task> next)
{
return (env) => {
// do stuff
await next(env);
// do more stuff
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment