Freigeben über


ProfilePropertySettingsCollection.Add(ProfilePropertySettings) Methode

Definition

Fügt der Auflistung ein ProfilePropertySettings-Objekt hinzu.

public:
 void Add(System::Web::Configuration::ProfilePropertySettings ^ propertySettings);
public void Add (System.Web.Configuration.ProfilePropertySettings propertySettings);
member this.Add : System.Web.Configuration.ProfilePropertySettings -> unit
Public Sub Add (propertySettings As ProfilePropertySettings)

Parameter

propertySettings
ProfilePropertySettings

Ein der Auflistung hinzuzufügendes ProfilePropertySettings-Objekt.

Ausnahmen

Das hinzuzufügende ProfilePropertySettings-Objekt ist in der Auflistung bereits vorhanden, oder die Auflistung ist schreibgeschützt.

Beispiele

Im folgenden Codebeispiel wird die Verwendung der Add-Methode veranschaulicht. Dieses Codebeispiel ist Teil eines größeren Beispiels, das für die ProfileSection Klasse bereitgestellt wird.

// Add a new PropertySettings to the group.
ProfilePropertySettings newProp = new ProfilePropertySettings("AvatarImage");
newProp.Type = "System.String, System.dll";
newPropGroup.PropertySettings.Add(newProp);
' Add a new PropertySettings to the group.
Dim newProp As ProfilePropertySettings = new ProfilePropertySettings("AvatarImage")
newProp.Type = "System.String, System.dll"
newPropGroup.PropertySettings.Add(newProp)

Hinweise

Die Auflistung darf kein Objekt mit demselben Namen enthalten ProfilePropertySettings .

Gilt für

Siehe auch