Персонализация ASP.NET Кэш вывода MVC

#c# #asp.net #asp.net-mvc #caching #outputcache

Вопрос:

У меня есть ASP.NET Приложение MVC и я используем кэш вывода. Мне нужен определенный код страны с ip-адреса и передайте его методу GetVaryByCustomString. Что я могу для этого сделать?

 [OutputCache(Duration = 3600, VaryByCustom = "none", VaryByParam = "none")]
public ActionResult Index(string amp)
{
    //i need to pass this variable to GetVaryByCustomString
    var countryCode = myService.GetCountryCode(myIpAddress);

    return View();
}

public override string GetVaryByCustomString(HttpContext context, string arg)
{
    var application = context.Application;
    var request = context.Request;
    
    
    //I need here country code 
    
    var sb = new StringBuilder();
    sb.Append(countryCode);
    
    return sb.ToString();
}