GetVariableList

GetVariableList(string, object)

public object GetVariableList(string name, object defaultValue) ;

Description

Get the value of VariableList.

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.

GetVariableList(int, object)

public object GetVariableList(int id, object defaultValue) ;

Description

Get the value of VariableList.

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.

GetVariableList<TVariable>(string)

public IList<TVariable> GetVariableList<TVariable>(string name) ;

Description

Get the value of VariableList.

Type Parameters

Type Parameter Name Description Type Constraints
TVariable Type of Variable to get

Parameters

Parameter Name Description
name Name.

Returns

The value of the parameter. If there is no parameter, it returns null.

GetVariableList<TVariable>(int)

public IList<TVariable> GetVariableList<TVariable>(int id) ;

Description

Get the value of VariableList.

Type Parameters

Type Parameter Name Description Type Constraints
TVariable Type of Variable to get

Parameters

Parameter Name Description
id ID.

Returns

The value of the parameter. If there is no parameter, it returns null.