Skip to content

Instantly share code, notes, and snippets.

@manoj-choudhari-git
Created October 4, 2020 10:12
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/e8996b5664b9adcf1a6ed7c94094c878 to your computer and use it in GitHub Desktop.
Save manoj-choudhari-git/e8996b5664b9adcf1a6ed7c94094c878 to your computer and use it in GitHub Desktop.
Run extension method to register the simplest middleware
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)
{
// Run method, anonymous inline middleware,
// Terminal middleware as it ends the app pipeline.
// NOTE: Run method does not have ability to call next middleware.
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