I am using the ConfigurationManager.AppSettings assembly to restore configuration values โโfrom a Web.config file in an ASP.NET application. Does anyone know if the values โโin AppSettings will be cached in memory in any way, or if the file read in Web.config occurs every time the setting is received?
string someValue = ConfigurationManager.AppSettings["SomeSetting"];
thank
source
share