GetVariable
public object GetVariable(string name, object defaultValue) ;
Get the value of Variable.
Parameter Name | Description |
---|---|
name | Name. |
defaultValue | Default value. It is returned when there is no parameter. |
The value of the parameter. If there is no parameter, it returns defaultValue.
public object GetVariable(int id, object defaultValue) ;
Get the value of Variable.
Parameter Name | Description |
---|---|
id | ID. |
defaultValue | Default value. It is returned when there is no parameter. |
The value of the parameter. If there is no parameter, it returns defaultValue.
public TVariable GetVariable<TVariable>(string name, TVariable defaultValue) ;
Get the value of Variable.
Type Parameter Name | Description | Type Constraints |
---|---|---|
TVariable | Type of Variable to get |
Parameter Name | Description |
---|---|
name | Name. |
defaultValue | Default value. It is returned when there is no parameter. |
The value of the parameter. If there is no parameter, it returns defaultValue.
public TVariable GetVariable<TVariable>(int id, TVariable defaultValue) ;
Get the value of Variable.
Type Parameter Name | Description | Type Constraints |
---|---|---|
TVariable | Type of Variable to get |
Parameter Name | Description |
---|---|
id | ID. |
defaultValue | Default value. It is returned when there is no parameter. |
The value of the parameter. If there is no parameter, it returns defaultValue.