I have setup the cultures for my views and changing the culture in a controller but I can\'t seem to find how to know what culture I\'m currently using in a controller, I\'m loo
The answer was on the Request Object, here's the code:
public async Task Index() {
// Retrieves the requested culture
var rqf = Request.HttpContext.Features.Get();
// Culture contains the information of the requested culture
var culture = rqf.RequestCulture.Culture;
return View();
}