Skip to content

Instantly share code, notes, and snippets.

@CoreProgramm
Created April 30, 2020 14:35
Show Gist options
  • Save CoreProgramm/afd1f39354270f1ca9f3aac91f512684 to your computer and use it in GitHub Desktop.
Save CoreProgramm/afd1f39354270f1ca9f3aac91f512684 to your computer and use it in GitHub Desktop.
Custom Middleware
public async Task Invoke(HttpContext httpContext)
{
await httpContext.Response.Body.WriteAsync(Encoding.ASCII.GetBytes("Called from Custom Middleware -- "));
await _next.Invoke(httpContext);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment