ProfileGroupSettingsCollection.Add Method (ProfileGroupSettings)

 

Adds a ProfileGroupSettings object to the collection.

Namespace:   System.Web.Configuration
Assembly:  System.Web (in System.Web.dll)

Public Sub Add (
	group As ProfileGroupSettings
)

Parameters

group
Type: System.Web.Configuration.ProfileGroupSettings

A ProfileGroupSettings object to add to the collection.

Exception Condition
ConfigurationException

The ProfileGroupSettings object to add already exists in the collection, or the collection is read-only.

The collection must not already contain a ProfileGroupSettings object with the same name.

The following code example shows how to use the Add method. This code example is part of a larger example provided for the ProfileSection class.

' 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()

.NET Framework
Available since 2.0
Return to top
Show: