Skip to content

Instantly share code, notes, and snippets.

@manoj-choudhari-git
Created October 4, 2020 11:03
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 manoj-choudhari-git/59d53796d6823ddd2db7d0370c3deea8 to your computer and use it in GitHub Desktop.
Save manoj-choudhari-git/59d53796d6823ddd2db7d0370c3deea8 to your computer and use it in GitHub Desktop.
Usage of Use extension method to register a middleware in ASP .NET Core 5
public class Startup
{
// This method gets called by the runtime. Use this method to add services to the container.
// For more information on how to configure your application, visit https://go.microsoft.com/fwlink/?LinkID=398940
public void ConfigureServices(IServiceCollection services)
{
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
app.Use(async (context, next) =>
{
// Do work that doesn't write to the Response.
// e.g. change something in context
// or log something to database
// Invoke next middleware
await next.Invoke();
// Do logging or other work that doesn't write to the Response.
});
app.Run(async context =>
{
await context.Response.WriteAsync("My First .NET 5 Web App");
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment