ProfileGroupSettingsCollection.Add(ProfileGroupSettings) Method

Definition

Adds a ProfileGroupSettings object to the collection.

C#
public void Add (System.Web.Configuration.ProfileGroupSettings group);

Parameters

group
ProfileGroupSettings

A ProfileGroupSettings object to add to the collection.

Exceptions

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

Examples

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.

C#
// 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();

Remarks

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

Applies to

Produs Versiuni
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also