C# Class Nexus.Client.Settings.SettingsGroup

The base class for settings groups.
A settings group is a logical grouping of settings.
Inheritance: ObservableObject
Datei anzeigen Open project: NexusMods/NexusModManager-4.5 Class Usage Examples

Public Methods

Method Description
Load ( ) : void

Loads the grouped setting values from the persistent store.

Save ( ) : bool

Persists the grouped setting values to the persistent store.

SettingsGroup ( IEnvironmentInfo p_eifEnvironmentInfo ) : Nexus.Client.Util

A simple constructor that initializes the object with the given dependencies.

Method Details

Load() public abstract method

Loads the grouped setting values from the persistent store.
public abstract Load ( ) : void
return void

Save() public abstract method

Persists the grouped setting values to the persistent store.
public abstract Save ( ) : bool
return bool

SettingsGroup() public method

A simple constructor that initializes the object with the given dependencies.
public SettingsGroup ( IEnvironmentInfo p_eifEnvironmentInfo ) : Nexus.Client.Util
p_eifEnvironmentInfo IEnvironmentInfo The application's envrionment info.
return Nexus.Client.Util