TryGetVariableList

TryGetVariableList(string, out object)

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

説明

VariableListの値を取得する。

パラメーター

パラメーター名 説明
name 名前。
value 取得する値。

戻り値

指定した名前のパラメータがあった場合にtrue。

TryGetVariableList(int, out object)

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

説明

VariableListの値を取得する。

パラメーター

パラメーター名 説明
id ID。
value 取得する値。

戻り値

指定した名前のパラメータがあった場合にtrue。

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

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

説明

VariableListの値を取得する。

型パラメーター

型パラメーター名 説明 型制約
TVariable 取得するVariableの型

パラメーター

パラメーター名 説明
name 名前。
value 取得する値。

戻り値

指定した名前のパラメータがあった場合にtrue。

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

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

説明

VariableListの値を取得する。

型パラメーター

型パラメーター名 説明 型制約
TVariable 取得するVariableの型

パラメーター

パラメーター名 説明
id ID。
value 取得する値。

戻り値

指定した名前のパラメータがあった場合にtrue。