ElementInformation.Properties Property
.NET Framework (current version)
Gets a PropertyInformationCollection collection of the properties in the associated ConfigurationElement object.
Assembly: System.Configuration (in System.Configuration.dll)
Property Value
Type: System.Configuration.PropertyInformationCollectionA PropertyInformationCollection collection of the properties in the associated ConfigurationElement object.
The properties of a ConfigurationElement object are the attributes and subelements associated with that configuration element in the configuration file.
The following example shows how to get the Properties collection.
static public void GetElementProperties() { // Get the current configuration file. System.Configuration.Configuration config = ConfigurationManager.OpenExeConfiguration( ConfigurationUserLevel.None); // Get the section. UrlsSection section = (UrlsSection)config.GetSection("MyUrls"); // Get the element. UrlConfigElement url = section.Simple; // Get the element properties. PropertyInformationCollection properties = url.ElementInformation.Properties; foreach (PropertyInformation prop in properties) { Console.WriteLine( "Name: {0} Type: {1}", prop.Name, prop.Type.ToString()); } }
.NET Framework
Available since 2.0
Available since 2.0
Show: