ProfileManager.Providers 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取 ASP.NET 应用程序的配置文件提供程序的集合。
public:
static property System::Web::Profile::ProfileProviderCollection ^ Providers { System::Web::Profile::ProfileProviderCollection ^ get(); };
public static System.Web.Profile.ProfileProviderCollection Providers { get; }
static member Providers : System.Web.Profile.ProfileProviderCollection
Public Shared ReadOnly Property Providers As ProfileProviderCollection
属性值
为 ASP.NET 应用程序配置的配置文件提供程序的 ProfileProviderCollection。
例外
示例
下面的代码示例列出了为应用程序启用的提供程序及其各自的类型。
<%@ Page Language="C#" %>
<%@ Import Namespace="System.Web.Profile" %>
<%@ Import Namespace="System.Configuration.Provider" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>List Enabled Providers</title>
</head>
<body>
<%
foreach (ProviderBase p in ProfileManager.Providers)
Response.Write(p.Name + ", " + p.GetType() + "<br />");
%>
</body>
</html>
<%@ Page Language="VB" %>
<%@ Import Namespace="System.Web.Profile" %>
<%@ Import Namespace="System.Configuration.Provider" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>List Enabled Providers</title>
</head>
<body>
<%
For Each p As ProviderBase In ProfileManager.Providers
Response.Write(p.Name & ", " & p.GetType().ToString() & "<br />")
Next
%>
</body>
</html>
注解
属性 Providers 引用为应用程序启用的所有配置文件提供程序,包括计算机配置中添加的提供程序和在所有 Web.config 文件中添加的提供程序。 可以使用配置文件中配置文件中配置文件部分的 providers 元素来控制哪些 配置文件 提供程序可用于应用程序。 例如,以下 Web.config 文件删除父配置文件中指定的配置文件提供程序,并将 实例 SqlProfileProvider 添加为应用程序的配置文件提供程序。
<configuration>
<connectionStrings>
<add name="SqlServices" connectionString=
"Data Source=MySqlServer;Integrated Security=SSPI;Initial Catalog=aspnetdb;" />
</connectionStrings>
<system.web>
<profile enabled="true" defaultProvider="SqlProvider">
<providers>
<clear />
<add name="SqlProvider"
type="System.Web.Profile.SqlProfileProvider"
connectionStringName="SqlServices"
applicationName="MyApplication" />
</providers>
</profile>
</system.web>
</configuration>
指定 配置文件 部分时,必须通过设置 属性来 defaultProvider
指定默认提供程序。 如果未在 Web.config 文件中指定 profile
节,将使用计算机配置中的值, SqlProfileProvider 并将名为 AspNetSqlProvider 的实例建立为默认提供程序。
可以通过按名称为配置文件提供程序编制索引并将其强制转换为所需类型,从 Providers 集合中获取对提供程序的强类型引用。