ValueProvider
在 MVC5 中,我曾经像这样在 Controller Action中获取一个:
public class ConfigurationsController : Controller
{
public ActionResult Index()
{
var valueProvider = this.ValueProvider;
var someValue = valueProvider.GetValue("someKey");
return View();
}
}
但它似乎在 Asp.NET Core 1.0 中消失了。有没有办法ValueProvider
在新版本中获得?
提前致谢