This repository was archived by the owner on Nov 29, 2018. It is now read-only.

Description
I tested after
in startup class app.UseRequestLocalization not work.
For example user want culture segment been in:
routes.MapRoute(
name: "transRoute",
template: "{controller=Home}/{culture=en-US}/{action=Index}/{id?}");
So how I can get {culture} segment to find route match?
This is all way not processed:
options.RequestCultureProviders.Insert(0, new CustomRequestCultureProvider(async context =>
{
var routeContext = new RouteContext(context); // IsHandled all ways false
Thanks Alex