TryGetVariableList

TryGetVariableList(string, out object)

public bool TryGetVariableList(string name, out object value) ;

Description

Get the value of VariableList.

Parameters

Parameter Name Description
name Name.
value The value you get.

Returns

The true when there parameters of the specified name.

TryGetVariableList(int, out object)

public bool TryGetVariableList(int id, out object value) ;

Description

Get the value of VariableList.

Parameters

Parameter Name Description
id ID.
value The value you get.

Returns

The true when there parameters of the specified name.

TryGetVariableList<TVariable>(string, out IList<TVariable>)

public bool TryGetVariableList<TVariable>(string name, out IList<TVariable> value) ;

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.
value The value you get.

Returns

The true when there parameters of the specified name.

TryGetVariableList<TVariable>(int, out IList<TVariable>)

public bool TryGetVariableList<TVariable>(int id, out IList<TVariable> value) ;

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.
value The value you get.

Returns

The true when there parameters of the specified name.