ProfileSection.AutomaticSaveEnabled Свойство

Определение

Возвращает или задает значение, определяющее сохраняются ли автоматически изменения информации профиля пользователя при выходе из страницы.

public:
 property bool AutomaticSaveEnabled { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("automaticSaveEnabled", DefaultValue=true)]
public bool AutomaticSaveEnabled { get; set; }
[<System.Configuration.ConfigurationProperty("automaticSaveEnabled", DefaultValue=true)>]
member this.AutomaticSaveEnabled : bool with get, set
Public Property AutomaticSaveEnabled As Boolean

Значение свойства

true, если информация профиля сохраняется автоматически при выходе из страницы, в противном случае false. Значение по умолчанию — true.

Атрибуты

Примеры

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


// Get the current AutomaticSaveEnabled property value.
Console.WriteLine(
    "Current AutomaticSaveEnabled value: '{0}'", profileSection.AutomaticSaveEnabled);

// Set the AutomaticSaveEnabled property to false.
profileSection.AutomaticSaveEnabled = false;

' Get the current AutomaticSaveEnabled property value.
Console.WriteLine( _
    "Current AutomaticSaveEnabled value: '{0}'", profileSection.AutomaticSaveEnabled)

' Set the AutomaticSaveEnabled property to false.
profileSection.AutomaticSaveEnabled = false

Комментарии

AutomaticSaveEnabled Если свойство имеет значение false, изменения в отдельных профилях не сохраняются, если Save в коде ProfileCommon не вызывается метод класса . AutomaticSaveEnabled Если свойство имеет значение true, ProfileAutoSaving событие также позволяет коду переопределить поведение автоматического сохранения.

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

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