Provides functionality for retrieving settings from various sources such as application settings file.
More...
|
override string | GetSetting (string settingname) |
| Retrieves the specified setting from the current settings source. More...
|
|
override string | GetSetting (string settingname) |
| Retrieves the specified setting from the current settings source. More...
|
|
virtual bool | GetBooleanSetting (string settingname) |
| Retrieves the specified boolean setting from the current settings source. More...
|
|
virtual long | GetIntegerSetting (string settingname) |
| Retrieves the specified integer setting from the current settings source. If the specific setting is not specified in the configuration then 0 is returned. More...
|
|
virtual long | GetIntegerSetting (string settingname, long defaultvalue) |
| Retrieves the specified integer setting from the current settings source. More...
|
|
virtual bool | GetBooleanSetting (string settingname) |
| Retrieves the specified boolean setting from the current settings source. More...
|
|
virtual long | GetIntegerSetting (string settingname) |
| Retrieves the specified integer setting from the current settings source. If the specific setting is not specified in the configuration then 0 is returned. More...
|
|
virtual long | GetIntegerSetting (string settingname, long defaultvalue) |
| Retrieves the specified integer setting from the current settings source. More...
|
|
|
virtual string | GetSettingAppConfig (string settingname) |
|
virtual string | GetSettingAppConfig (string settingname) |
|
bool | ToBoolean (string strsetting) |
| Converts a string representation of a boolean setting to boolean. Strings "true", "yes" and "on" (regardless of capitalization) or non-zero integer representations result to true, anything else (including null or empty string) result in false. More...
|
|
long | ToInt (string strsetting) |
| Converts a string representation of an integer setting to an integer value. If the setting is not defined then 0 is returned. More...
|
|
long | ToInt (string strsetting, long defaultvalue) |
| Converts a string representation of an integer setting to an integer value. More...
|
|
Provides functionality for retrieving settings from various sources such as application settings file.
$A Igor Apr10;