我已将盐添加到配置文件中,但它引发了以下错误。有没有办法使用配置文件中的 Salf 值?我试图使用Static
而不是const
但不工作。
错误
constant initializer must be compile-time constant
代码
public const string SaltValue= ConfigurationManager.AppSettings["SaltValue"];
[HttpPost]
[ValidateAntiForgeryToken(Salt = SaltValue)]
public ActionResult Index(SomeViewModel someViewModel)
{
return View();
}
非常感谢