T
Tony Johansson
Hi!
In this text they talk about default configuration sections in the
configuration file what is that. I have tried to search for default
configuration sections but haven't got any good explanations ?
You can use the ConfigurationSection class to add a custom section to the
configuration file. All the default configuration sections in the
configuration file are represented by the classes that are extended from the
ConfigurationSection class. The ConfigurationSection class inherits the
ConfigurationElement class and therefore it can be represented by a
ConfigurationElement. Every ConfigurationElement object creates an internal
ConfigurationPropertyCollection, which is a collection of
ConfigurationProperty objects. The ConfigurationProperty objects represent
the attributes or the child elements of the Configuration element.
//Tony
In this text they talk about default configuration sections in the
configuration file what is that. I have tried to search for default
configuration sections but haven't got any good explanations ?
You can use the ConfigurationSection class to add a custom section to the
configuration file. All the default configuration sections in the
configuration file are represented by the classes that are extended from the
ConfigurationSection class. The ConfigurationSection class inherits the
ConfigurationElement class and therefore it can be represented by a
ConfigurationElement. Every ConfigurationElement object creates an internal
ConfigurationPropertyCollection, which is a collection of
ConfigurationProperty objects. The ConfigurationProperty objects represent
the attributes or the child elements of the Configuration element.
//Tony