Javascript ConfigSection
From Yate Documentation
				
								
				(Difference between revisions)
				
																
				
				
								
				 (Created page with "Configuration File Section handling object.  ==Methods== * '''configFile()''' Returns the ConfigFile object holding this section.  * '''getValue(key)...")  | 
			m  | 
			||
| Line 9: | Line 9: | ||
* '''getValue(key,defValue)'''  | * '''getValue(key,defValue)'''  | ||
| − | Retrieves the value of ''key'' in this section. Returns ''  | + | Retrieves the value of ''key'' in this section. Returns ''defValue'' if the key or section does not exist.  | 
* '''setValue(key,value)'''  | * '''setValue(key,value)'''  | ||
Revision as of 13:54, 1 April 2014
Configuration File Section handling object.
Methods
- configFile()
 
Returns the ConfigFile object holding this section.
- getValue(key)
 
Retrieves the value of key in this section. Returns undefined if the key or section does not exist.
- getValue(key,defValue)
 
Retrieves the value of key in this section. Returns defValue if the key or section does not exist.
- setValue(key,value)
 
Sets the value for key in this file section.
- clearKey(key)
 
Deletes the key from this file section.
- keys()
 
Returns a numbered (non-associative) Array containing all the key names in this section.