Skip to content

Instantly share code, notes, and snippets.

@manoj-choudhari-git
Created October 11, 2020 17:32
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/a41823b04eda1095723cf36038d78b06 to your computer and use it in GitHub Desktop.
Save manoj-choudhari-git/a41823b04eda1095723cf36038d78b06 to your computer and use it in GitHub Desktop.
Request process pipeline with dummy cookie 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)
{
app.UseDummyCookieMiddleware();
app.Run(async context =>
{
await context.Response.WriteAsync("App Response");
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment