GetVariableList

GetVariableList(string, object)

public object GetVariableList(string name, object defaultValue) ;

説明

VariableListの値を取得する。

パラメーター

パラメーター名 説明
name 名前。
defaultValue デフォルトの値。パラメータがない場合に返される。

戻り値

パラメータの値。パラメータがない場合はdefaultValueを返す。

GetVariableList(int, object)

public object GetVariableList(int id, object defaultValue) ;

説明

VariableListの値を取得する。

パラメーター

パラメーター名 説明
id ID。
defaultValue デフォルトの値。パラメータがない場合に返される。

戻り値

パラメータの値。パラメータがない場合はdefaultValueを返す。

GetVariableList<TVariable>(string)

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

説明

VariableListの値を取得する。

型パラメーター

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

パラメーター

パラメーター名 説明
name 名前。

戻り値

パラメータの値。パラメータがない場合はnullを返す。

GetVariableList<TVariable>(int)

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

説明

VariableListの値を取得する。

型パラメーター

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

パラメーター

パラメーター名 説明
id ID。

戻り値

パラメータの値。パラメータがない場合はnullを返す。