ProfileGroupSettings 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
提供對 group
組態檔區段之 profiles
子區段的程式方式存取。
public ref class ProfileGroupSettings sealed : System::Configuration::ConfigurationElement
public sealed class ProfileGroupSettings : System.Configuration.ConfigurationElement
type ProfileGroupSettings = class
inherit ConfigurationElement
Public NotInheritable Class ProfileGroupSettings
Inherits ConfigurationElement
- 繼承
範例
下列程式代碼範例示範如何使用 型別 ProfileGroupSettings 。 此程式代碼範例是針對 類別提供的較大範例的 ProfileSection 一部分。
// Add a new group.
ProfileGroupSettings newPropGroup = new ProfileGroupSettings("Forum");
profileSection.PropertySettings.GroupSettings.Add(newPropGroup);
// Add a new PropertySettings to the group.
ProfilePropertySettings newProp = new ProfilePropertySettings("AvatarImage");
newProp.Type = "System.String, System.dll";
newPropGroup.PropertySettings.Add(newProp);
// Remove a PropertySettings from the group.
newPropGroup.PropertySettings.Remove("AvatarImage");
newPropGroup.PropertySettings.RemoveAt(0);
// Clear all PropertySettings from the group.
newPropGroup.PropertySettings.Clear();
' Add a new group.
Dim newPropGroup As ProfileGroupSettings = new ProfileGroupSettings("Forum")
profileSection.PropertySettings.GroupSettings.Add(newPropGroup)
' Add a new PropertySettings to the group.
Dim newProp As ProfilePropertySettings = new ProfilePropertySettings("AvatarImage")
newProp.Type = "System.String, System.dll"
newPropGroup.PropertySettings.Add(newProp)
' Remove a PropertySettings from the group.
newPropGroup.PropertySettings.Remove("AvatarImage")
newPropGroup.PropertySettings.RemoveAt(0)
' Clear all PropertySettings from the group.
newPropGroup.PropertySettings.Clear()
備註
類別ProfileGroupSettings可讓您以程序設計方式建立、存取和修改組態檔區段子區段profile
所新增group
的屬性群組。
組態檔的 區 profile
段會指定使用者配置檔的架構。 在執行時間,ASP.NET 編譯系統會使用 區段中指定 profile
的資訊來產生名為 ProfileCommon
的類別,其衍生自 ProfileBase。 類別ProfileCommon
定義是以組態檔區段子區段中profile
定義的properties
屬性為基礎。 系統會為每個使用者配置檔建立此類別的實例,而且您可以透過 HttpContext.Profile 屬性存取程式代碼中的個別配置檔值。 如需新增至 ASP.NET 2.0 之配置檔功能的詳細資訊,請參閱 ASP.NET 配置檔屬性概觀。
建構函式
ProfileGroupSettings(String) |
使用預設值初始化 ProfileGroupSettings 類別的新執行個體。 |