ProfilePropertySettingsCollection.Add Method (ProfilePropertySettings)

 

Adds a ProfilePropertySettings object to the collection.

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

Public Sub Add (
	propertySettings As ProfilePropertySettings
)

Parameters

propertySettings
Type: System.Web.Configuration.ProfilePropertySettings

A ProfilePropertySettings object to add to the collection.

Exception Condition
ConfigurationException

The ProfilePropertySettings object to add already exists in the collection or the collection is read only.

The collection must not already contain a ProfilePropertySettings 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 PropertySettings to the group.
Dim newProp As ProfilePropertySettings = new ProfilePropertySettings("AvatarImage")
newProp.Type = "System.String, System.dll"
newPropGroup.PropertySettings.Add(newProp)

.NET Framework
Available since 2.0
Return to top
Show: