Skip to content

Instantly share code, notes, and snippets.

@aykuttasil
Created April 20, 2019 22:31
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 aykuttasil/3e3741c99ebafe52d2b6bd4ccae00972 to your computer and use it in GitHub Desktop.
Save aykuttasil/3e3741c99ebafe52d2b6bd4ccae00972 to your computer and use it in GitHub Desktop.
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
else
{
app.UseExceptionHandler("/Home/Error");
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
app.UseHsts();
}
app.Run(async context =>
{
await context.Response.WriteAsync("Response 1");
});
app.Run(async context =>
{
await context.Response.WriteAsync("Response 2");
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment