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否则不会保存对单个配置文件所做的更改ProfileCommonAutomaticSaveEnabled当 属性为 true时,ProfileAutoSaving事件还允许代码替代自动保存行为。

适用于

另请参阅