| ISettingsGetSetting Method (String, String, String) | 
        
        
          
         
            Gets a string setting value.
            
 
    Namespace: 
   Ingeniux.CMS
    Assembly:
   Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.5.94
 Syntax
Syntaxstring GetSetting(
	string sectionName,
	string settingName,
	string defaultValue
)
Function GetSetting ( 
	sectionName As String,
	settingName As String,
	defaultValue As String
) As String
String^ GetSetting(
	String^ sectionName, 
	String^ settingName, 
	String^ defaultValue
)
abstract GetSetting : 
        sectionName : string * 
        settingName : string * 
        defaultValue : string -> string 
Parameters
- sectionName
- Type: SystemString
 Section name
- settingName
- Type: SystemString
 Setting name within section
- defaultValue
- Type: SystemString
 Default value to return, in case the setting doesn't exist
Return Value
Type: 
StringValue of the setting. If the setting doesn't exist, returns default value.
 See Also
See Also