ModulePropertiesPage.LoadPreferences(PreferencesStore) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Retrieves stored preferences from a per-user store.
protected:
override void LoadPreferences(Microsoft::Web::Management::Client::PreferencesStore ^ store);
protected override void LoadPreferences (Microsoft.Web.Management.Client.PreferencesStore store);
override this.LoadPreferences : Microsoft.Web.Management.Client.PreferencesStore -> unit
Protected Overrides Sub LoadPreferences (store As PreferencesStore)
Parameters
- store
- PreferencesStore
The preference store.
Examples
The following example loads several configuration settings.
protected override void LoadPreferences(
PreferencesStore store) {
try {
base.LoadPreferences(store);
_myCnfgBool = store.GetValue(CS.myCnfgBool, false);
int i = store.GetValue(CS.zCnt, 1638);
Trace.WriteLine("store.GetValue(zCnt, 1638); = "
+ i.ToString());
} catch (Exception ex) {
OnException(ex);
}
}