Type class in config file ???

  • Thread starter Thread starter serge calderara
  • Start date Start date
S

serge calderara

Dear all,

How to know which class to use to collect config file
information?

NameValueSectionHandler or SingleTagSectionHandler and
others

thanks for your reply
regards
 
serge said:
Dear all,

How to know which class to use to collect config file
information?

NameValueSectionHandler or SingleTagSectionHandler and
others

thanks for your reply
regards

Hi,

For the standard config file schema these values are stored in the
machine.config. Look for the <configSections> node and the <section> node
for the items that you are interested in. The type attribute lists the
object type that will be returned from ConfigurationSettings.GetConfig().

Richard
 
Back
Top