Skip to content

Instantly share code, notes, and snippets.

@manoj-choudhari-git
Created October 5, 2020 18:50
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/cfbab152ab995b8c470a56d25b04be53 to your computer and use it in GitHub Desktop.
Save manoj-choudhari-git/cfbab152ab995b8c470a56d25b04be53 to your computer and use it in GitHub Desktop.
Branch Request Pipeline using Map Extension Method
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.Map("/first", handleFirstBranch);
app.Map("/second", handleSecondBranch);
app.Run(async context =>
{
await context.Response.WriteAsync("The default pipeline is executed");
});
}
public void handleFirstBranch(IApplicationBuilder app)
{
app.Run(async context =>
{
await context.Response.WriteAsync("First branch is executed");
});
}
public void handleSecondBranch(IApplicationBuilder app)
{
app.Run(async context =>
{
await context.Response.WriteAsync("Second branch is executed");
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment