GetString
GetString(string, string)
public string GetString(string name, string defaultValue) ;
Description
Get the value of the String type.
Parameters
Parameter Name | Description |
---|---|
name | Name. |
defaultValue | Default value. It is returned when there is no parameter. |
Returns
The value of the parameter. If there is no parameter, it returns defaultValue.
GetString(int, string)
public string GetString(int id, string defaultValue) ;
Description
Get the value of the String type.
Parameters
Parameter Name | Description |
---|---|
id | ID. |
defaultValue | Default value. It is returned when there is no parameter. |
Returns
The value of the parameter. If there is no parameter, it returns defaultValue.
GetString(string, out string)
Obsolete public bool GetString(string name, out string value) ;
Description
Get the value of the String type.
Parameters
Parameter Name | Description |
---|---|
name | Name. |
value | Value. |
Returns
The true when there parameters of the specified name.
GetString(int, out string)
Obsolete public bool GetString(int id, out string value) ;
Description
Get the value of the String type.
Parameters
Parameter Name | Description |
---|---|
id | ID. |
value | Value. |
Returns
The true when there parameters of the specified name.