共用方式為


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 事件也允許程式碼覆寫自動儲存行為。

適用於

另請參閱