System.Configuration.ProtectedConfigurationProviderCollection 类

方法描述

提供 ProtectedConfigurationProvider 对象的集合。

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

public class ProtectedConfigurationProviderCollection : ProviderCollection

构造函数

构造函数名称 构造函数描述
ProtectedConfigurationProviderCollection 使用默认设置初始化 ProtectedConfigurationProviderCollection 类的新实例。

成员/方法

方法名称 方法描述
Add 将 ProtectedConfigurationProvider 对象添加到集合中。 (重写 ProviderCollection.Add(ProviderBase)。)
Clear 从集合中移除所有项。 (继承自 ProviderCollection。)
CopyTo 从指定索引处开始,将集合中的内容复制到给定数组。 (继承自 ProviderCollection。)
Equals(Object) 确定指定的 Object 是否等于当前的 Object。 (继承自 Object。)
Finalize 允许对象在“垃圾回收”回收之前尝试释放资源并执行其他清理操作。 (继承自 Object。)
GetEnumerator 返回一个对象,该对象实现 IEnumerator 接口以循环访问集合。 (继承自 ProviderCollection。)
GetHashCode 用作特定类型的哈希函数。 (继承自 Object。)
GetType 获取当前实例的 Type。 (继承自 Object。)
MemberwiseClone 创建当前 Object 的浅表副本。 (继承自 Object。)
Remove 从集合中移除提供程序。 (继承自 ProviderCollection。)
SetReadOnly 将集合设置为只读。 (继承自 ProviderCollection。)
ToString 返回表示当前对象的字符串。 (继承自 Object。)

提示和注释

ProtectedConfiguration 类的 Providers 属性是所有可供应用程序使用的受保护配置提供程序的 ProtectedConfigurationProviderCollection 集合。

可以对配置文件的节进行加密,以保护应用程序所使用的敏感信息。 这样,即使攻击者获得了对配置文件的访问权限,也很难对配置文件进行未授权访问,从而提高了安全性。

.NET Framework 包括两个受保护的配置提供程序,可以用于对配置文件中的节进行加密,这两个配置提供程序分别为 RsaProtectedConfigurationProvider 类和 DpapiProtectedConfigurationProvider 类,前者使用 RSACryptoServiceProvider 类来加密配置节,而后者使用 Windows 数据保护 API (DPAPI) 来加密配置节。

您可能需要使用 RSA 或 DPAPI 提供程序之外的某种算法来加密敏感信息。 在这种情况下,您可以生成自己的自定义受保护的配置提供程序。 ProtectedConfigurationProvider 类是一个抽象基类,必须继承该类才能创建您自己的受保护配置提供程序。

有关受保护配置的更多信息,请参见 使用受保护的配置加密配置信息。

System.Configuration.ProtectedConfigurationProviderCollection 类例子


继承层次结构

System.Object

System.Configuration.Provider.ProviderCollection

System.Configuration.ProtectedConfigurationProviderCollection

命名空间

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 系统要求。