Method | Description | |
---|---|---|
Clear ( ) : void |
清空数据
|
|
Clear ( System.Boolean all ) : void |
清空数据
|
|
ContainsKey ( String key ) : System.Boolean |
是否包含指定键
|
|
Push ( String key, Object value ) : void |
添加数据
|
|
Remove ( String key ) : System.Boolean |
移除指定对象
|
|
VariableScope ( ) : System |
无参构造函数
|
|
VariableScope ( Object>.IDictionary |
以字典来初始化对象
|
|
VariableScope ( |
以父VariableScope来初始化对象
|
|
VariableScope ( |
以父VariableScope与字典来初始化对象
|
|
this ( String name ) : Object |
获取索引值
|
Method | Description | |
---|---|---|
SetValue ( String key, Object value ) : System.Boolean |
为已有键设置新的值(本方法供set标签做特殊处理使用)
|
public Clear ( System.Boolean all ) : void | ||
all | System.Boolean | 是否清空父数据 |
return | void |
public ContainsKey ( String key ) : System.Boolean | ||
key | String | 键 |
return | System.Boolean |
public Push ( String key, Object value ) : void | ||
key | String | 键 |
value | Object | 值 |
return | void |
public Remove ( String key ) : System.Boolean | ||
key | String | |
return | System.Boolean |
public VariableScope ( Object>.IDictionary |
||
dictionary | Object>.IDictionary | 初始化字典 |
return | System |
public VariableScope ( |
||
parent | 父VariableScope | |
return | System |
public VariableScope ( |
||
parent | 父VariableScope | |
dictionary | Object>.IDictionary | 初始化字典 |
return | System |