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 的強型別參考,方法是依名稱編製配置檔提供者的索引,並將它轉換成所需的類型。