ProfileProviderCollection.Item[String] 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回指定的提供程序名称所引用的配置文件提供程序。
public:
property System::Web::Profile::ProfileProvider ^ default[System::String ^] { System::Web::Profile::ProfileProvider ^ get(System::String ^ name); };
public System.Web.Profile.ProfileProvider this[string name] { get; }
member this.Item(string) : System.Web.Profile.ProfileProvider
Default Public ReadOnly Property Item(name As String) As ProfileProvider
参数
- name
- String
配置文件提供程序的名称。
属性值
继承 ProfileProvider 抽象类的对象。
注解
应用程序的配置文件提供程序通过 Providers 类的 ProfileManager 属性以只读ProfileProviderCollection方式公开。 可以按名称访问集合中的特定配置文件提供程序,并将其转换为特定的提供程序类型,例如 SqlProfileProvider。 这样,便可以在单个应用程序中管理来自多个数据存储的用户配置文件属性。 它还允许访问特定配置文件提供程序的成员,这些成员不是抽象类的成员 ProfileProvider 。