Поделиться через


ProfilePropertySettingsCollection.Add(ProfilePropertySettings) Метод

Определение

Добавляет объект ProfilePropertySettings в коллекцию.

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)

Параметры

propertySettings
ProfilePropertySettings

Объект ProfilePropertySettings для добавления в коллекцию.

Исключения

Добавляемый объект ProfilePropertySettings уже существует в коллекции или коллекция доступна только для чтения.

Примеры

В следующем примере кода показано применение метода Add. Этот пример входит в состав более крупного примера использования класса ProfileSection.

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

Комментарии

Коллекция не должна содержать ProfilePropertySettings объект с тем же именем.

Применяется к

См. также раздел