ConfigurationSection Caching

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am using the ConfigurationSection, ConfigurationElement,
ConfigurationElementCollection base classes for purposes of reading a
customized web.config Configuration section.....and I then use the
ConfigurationManager.GetSection to obtain my ConfigurationSection object. My
question is....Is there any inherit caching of the ConfigurationSection
object within the ConfigurationSection base class ?....or should I plan on
conducting my own caching... and using the web.config file as a caching
dependency ?
 
Hi,

web.config stuff is cached behind the scenes, so you don't need to cache it
manually.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top