A Sandcastle Documented Class Library
INIFileGetString Method |
Restituisce il valore presente nella sezione ed alla chiave specificata.
Se una delle due non esiste viene restituito il valore di default.
Namespace: QsInformatica.Utils
Assembly: QsInformatica.Utils (in QsInformatica.Utils.dll) Version: 22.4.2.0 (22.4.2.0)
Syntax
public string GetString( string Section, string Key, string DefaultValue )
Public Function GetString ( Section As String, Key As String, DefaultValue As String ) As String
public: String^ GetString( String^ Section, String^ Key, String^ DefaultValue )
member GetString : Section : string * Key : string * DefaultValue : string -> string
Parameters
- Section
- Type: SystemString
Sezione nella quale leggere l'impostazione. - Key
- Type: SystemString
Chiave nella quale leggere l'impostazione. - DefaultValue
- Type: SystemString
Valore di default restituito nel caso in cui la sezione o la chiave non esistessero.
Return Value
Type: StringRestituisce il valore letto dal file di inizializzazione oppure il valore di default passato come argomento.
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | La Section o la Key sono null o stringa vuota"". |
See Also