System.Configuration.PropertyInformationCollection 类

方法描述

包含 PropertyInformation 对象的集合。 此类不能被继承。

语法定义(C# System.Configuration.PropertyInformationCollection 类 的用法)

[SerializableAttribute]
public sealed class PropertyInformationCollection : NameObjectCollectionBase

构造函数

构造函数名称 构造函数描述

成员/方法

方法名称 方法描述
BaseAdd 将具有指定键和值的项添加到 NameObjectCollectionBase 实例中。 (继承自 NameObjectCollectionBase。)
BaseClear 移除 NameObjectCollectionBase 实例中的所有项。 (继承自 NameObjectCollectionBase。)
BaseGet(Int32) 获取 NameObjectCollectionBase 实例的指定索引处的项值。 (继承自 NameObjectCollectionBase。)
BaseGet(String) 获取 NameObjectCollectionBase 实例中第一个具有指定键的项值。 (继承自 NameObjectCollectionBase。)
BaseGetAllKeys 返回 String 数组,该数组包含 NameObjectCollectionBase 实例中的所有键。 (继承自 NameObjectCollectionBase。)
BaseGetAllValues() 返回 Object 数组,该数组包含 NameObjectCollectionBase 实例中的所有值。 (继承自 NameObjectCollectionBase。)
BaseGetAllValues(Type) 返回指定类型的数组,该数组包含 NameObjectCollectionBase 实例中的所有值。 (继承自 NameObjectCollectionBase。)
BaseGetKey 获取 NameObjectCollectionBase 实例的指定索引处的项键。 (继承自 NameObjectCollectionBase。)
BaseHasKeys 获取一个值,通过该值指示 NameObjectCollectionBase 实例是否包含键不为 null 的项。 (继承自 NameObjectCollectionBase。)
BaseRemove 移除 NameObjectCollectionBase 实例中具有指定键的项。 (继承自 NameObjectCollectionBase。)
BaseRemoveAt 移除 NameObjectCollectionBase 实例的指定索引处的项。 (继承自 NameObjectCollectionBase。)
BaseSet(Int32, Object) 设置 NameObjectCollectionBase 实例的指定索引处的项值。 (继承自 NameObjectCollectionBase。)
BaseSet(String, Object) 为 NameObjectCollectionBase 实例中第一个具有指定键的项设置值(如果有这样的项);否则将具有指定键和值的项添加到 NameObjectCollectionBase 实例中。 (继承自 NameObjectCollectionBase。)
CopyTo 从目标数组的指定索引处开始,将整个 PropertyInformationCollection 集合复制到兼容的一维 Array。
Equals(Object) 确定指定的 Object 是否等于当前的 Object。 (继承自 Object。)
Finalize 允许对象在“垃圾回收”回收之前尝试释放资源并执行其他清理操作。 (继承自 Object。)
GetEnumerator 获取 IEnumerator 对象,此对象用于循环访问此 PropertyInformationCollection 集合。 (重写 NameObjectCollectionBase.GetEnumerator()。)
GetHashCode 用作特定类型的哈希函数。 (继承自 Object。)
GetObjectData 用序列化 PropertyInformationCollection 实例所需的数据填充 SerializationInfo 对象。 (重写 NameObjectCollectionBase.GetObjectData(SerializationInfo, StreamingContext)。)
GetType 获取当前实例的 Type。 (继承自 Object。)
MemberwiseClone 创建当前 Object 的浅表副本。 (继承自 Object。)
OnDeserialization 实现 ISerializable 接口,并在完成反序列化之后引发反序列化事件。 (继承自 NameObjectCollectionBase。)
ToString 返回表示当前对象的字符串。 (继承自 Object。)

提示和注释

PropertyInformation 对象包含 PropertyInformationCollection 对象的集合。 PropertyInformation 对象包含配置中个别特性的详细信息。 PropertyInformationCollection 对象从关联的 NameObjectCollectionBase 对象派生。

System.Configuration.PropertyInformationCollection 类例子

下面的代码示例演示如何使用 PropertyInformationCollection 类。

// Create EllementInformation object.
ElementInformation elementInfo =
  configSection.ElementInformation;
// Create a PropertyInformationCollection object.
PropertyInformationCollection propertyInfoCollection =
  elementInfo.Properties;
// Create a PropertyInformation object.
PropertyInformation myPropertyInfo =
  propertyInfoCollection["enabled"];
// Display the property value.
Console.WriteLine
  ("anonymousIdentification Section - Enabled: {0}",
  myPropertyInfo.Value);

继承层次结构

System.Object

System.Collections.Specialized.NameObjectCollectionBase

System.Configuration.PropertyInformationCollection

命名空间

namespace: System.Configuration

程序集: System.Configuration(在 System.Configuration.dll 中)

线程安全

此类型的任何公共 static(在 Visual Basic 中为 Shared) 成员都是线程安全的。但不保证所有实例成员都是线程安全的。

版本信息

.NET Framework 受以下版本支持:4、3.5、3.0、2.0 .NET Framework Client Profile 受以下版本支持:4、3.5 SP1

适用平台

Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。