Udostępnij za pośrednictwem


ProfilePropertySettingsCollection.Add(ProfilePropertySettings) Metoda

Definicja

ProfilePropertySettings Dodaje obiekt do kolekcji.

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)

Parametry

propertySettings
ProfilePropertySettings

ProfilePropertySettings Obiekt do dodania do kolekcji.

Wyjątki

ProfilePropertySettings Obiekt do dodania już istnieje w kolekcji lub kolekcja jest tylko do odczytu.

Przykłady

W poniższym przykładzie kodu pokazano, jak używać Add metody . Ten przykład kodu jest częścią większego przykładu podanego ProfileSection dla klasy.

// 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)

Uwagi

Kolekcja nie może już zawierać ProfilePropertySettings obiektu o tej samej nazwie.

Dotyczy

Zobacz też