PropertyInformationCollection Class
Contains a collection of PropertyInformation objects. This class cannot be inherited.
Assembly: System.Configuration (in System.Configuration.dll)
The PropertyInformationCollection object contains a collection of PropertyInformation objects. A PropertyInformation object contains the details of an individual attribute within the configuration. The PropertyInformationCollection object is derived from the associated NameObjectCollectionBase object.
The following code example demonstrates how to use the PropertyInformationCollection class.
' Create EllementInformation object. Dim elementInfo As ElementInformation = _ configSection.ElementInformation() ' Create a PropertyInformationCollection object. Dim propertyInfoCollection As PropertyInformationCollection = _ elementInfo.Properties() ' Create a PropertyInformation object. Dim myPropertyInfo As PropertyInformation = _ propertyInfoCollection("enabled") ' Display the property value. Console.WriteLine _ ("anonymousIdentification Section - Enabled: {0}", _ myPropertyInfo.Value)
System.Collections.Specialized.NameObjectCollectionBase
System.Configuration.PropertyInformationCollection
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.