ApplicationSettingsBase::SettingsLoaded Event

 

Occurs after the application settings are retrieved from storage.

Namespace:   System.Configuration
Assembly:  System (in System.dll)

public:
event SettingsLoadedEventHandler^ SettingsLoaded {
	void add(SettingsLoadedEventHandler^ value);
	void remove(SettingsLoadedEventHandler^ value);
}

The SettingsLoaded event occurs only after the initial get access of the first configuration property used, typically through the Item method. Subsequent accesses use values for the settings property that are cached locally. The Reset and Reload methods will clear all cached values so this event will be raised again upon subsequent property access.

.NET Framework
Available since 2.0
Return to top
Show: