Class UserSettings
- Namespace
- PolarStudio
- Assembly
- PolarStudio.dll
The UserSettings provide a standardized way to get/set user-specific settings.
public class UserSettings
- Inheritance
-
UserSettings
- Inherited Members
- Extension Methods
Methods
ClearCache()
Clear the cache, causing the settings to be re-read the next time they are used.
public void ClearCache()
Get(string)
Get the value of a specific named setting
public string Get(string pSettingName)
Parameters
pSettingName
stringThe name of the setting (not case sensitive).
Returns
- string
A string with the value of the setting. Returns an empty string if unknown.
Set(string, string)
Set the string value of a specific named setting
public void Set(string pSettingName, string pValue)