Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 4
 SaveSettings Property
Collapse All/Expand All Collapse All
This page is specific to
Microsoft Visual Studio 2010/.NET Framework 4

Other versions are also available for the following:
.NET Framework Class Library
IPersistComponentSettings..::.SaveSettings Property

Gets or sets a value indicating whether the control should automatically persist its application settings properties.

Namespace:  System.Configuration
Assembly:  System (in System.dll)
Visual Basic
Property SaveSettings As Boolean
    Get
    Set
C#
bool SaveSettings { get; set; }
Visual C++
property bool SaveSettings {
    bool get ();
    void set (bool value);
}
F#
abstract SaveSettings : bool with get, set

Property Value

Type: System..::.Boolean
true if the control should automatically persist its state; otherwise, false.

If a control contains configuration data, it will typically persist this data in response to an explicit call to the SaveComponentSettings method or sometimes implicitly when the control's Dispose method is invoked. The SaveSettings property determines whether a control automatically persists its configuration data when it is disposed.

The default value of SaveSettings depends on the implementation of the control. The documentation for the control should indicate whether it uses application settings, what data is persisted, and what the default value of the SaveSettings property is.

The following code example shows the proper way for a control to check the value of the SaveSettings property before it attempts to automatically persist its configuration data.

protected override void Dispose( bool disposing ) {

if(disposing) {

try {

if (SaveSettings) {

SaveComponentSettings();

}

}

finally {

//...

}

}

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2012 Microsoft. All rights reserved. Terms of Use | Trademarks | Privacy Statement
Page view tracker