SetVariableList
SetVariableList(string, object)
public bool SetVariableList(string name, object value) ;
Description
It wants to set the value of VariableList.
Parameters
| Parameter Name | Description |
|---|---|
| name | Name. |
| value | Value. |
Returns
The true when there parameters of the specified name.
SetVariableList(int, object)
public bool SetVariableList(int id, object value) ;
Description
It wants to set the value of VariableList.
Parameters
| Parameter Name | Description |
|---|---|
| id | ID. |
| value | Value. |
Returns
The true when there parameters of the specified name.
SetVariableList<TVariable>(string, IList<TVariable>)
public bool SetVariableList<TVariable>(string name, IList<TVariable> value) ;
Description
It wants to set the value of Variable.
Type Parameters
| Type Parameter Name | Description | Type Constraints |
|---|---|---|
| TVariable | Type of Variable to set |
Parameters
| Parameter Name | Description |
|---|---|
| name | Name. |
| value | Value. |
Returns
The true when there parameters of the specified name.
SetVariableList<TVariable>(int, IList<TVariable>)
public bool SetVariableList<TVariable>(int id, IList<TVariable> value) ;
Description
It wants to set the value of VariableList.
Type Parameters
| Type Parameter Name | Description | Type Constraints |
|---|---|---|
| TVariable | Type of Variable to set |
Parameters
| Parameter Name | Description |
|---|---|
| id | ID. |
| value | Value. |
Returns
The true when there parameters of the specified name.