Skip to content

Instantly share code, notes, and snippets.

@nbarbettini
Last active July 28, 2017 02:49
Show Gist options
  • Save nbarbettini/fecdeebfb93ace7c239aa79963dbe19e to your computer and use it in GitHub Desktop.
Save nbarbettini/fecdeebfb93ace7c239aa79963dbe19e to your computer and use it in GitHub Desktop.
Basic ASP.NET Core middleware pattern
public class BasicMiddleware
{
public Task Invoke(HttpContext context)
{
// do something with context
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment