다음을 통해 공유


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 이벤트 코드에서 자동 저장 동작을 재정의할 수 있습니다.

적용 대상

추가 정보