PropertyInformationCollection Class
.NET Framework 3.0
Contains a collection of PropertyInformation objects. This class cannot be inherited.
Namespace: System.Configuration
Assembly: System.Configuration (in system.configuration.dll)
Assembly: System.Configuration (in system.configuration.dll)
'Declaration <SerializableAttribute> _ Public NotInheritable Class PropertyInformationCollection Inherits NameObjectCollectionBase 'Usage Dim instance As PropertyInformationCollection
/** @attribute SerializableAttribute() */ public final class PropertyInformationCollection extends NameObjectCollectionBase
SerializableAttribute public final class PropertyInformationCollection extends NameObjectCollectionBase
Not applicable.
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.Object
System.Collections.Specialized.NameObjectCollectionBase
System.Configuration.PropertyInformationCollection
System.Collections.Specialized.NameObjectCollectionBase
System.Configuration.PropertyInformationCollection
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: