你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
PropertyCollection class
表示属性及其值的集合。
属性
keys | 获取属性集合中的键。 |
方法
clone() | 克隆集合。 |
get |
返回 String 类型的属性值。 目前仅允许使用 String、int 和 bool。 如果该名称不可用,则返回指定的 defaultValue。 |
merge |
将这组属性合并到另一个不覆盖的属性中。 |
set |
设置 name 指定的参数的 String 值。 |
属性详细信息
keys
获取属性集合中的键。
string[] keys
属性值
string[]
集合中的键。
方法详细信息
clone()
getProperty(string | PropertyId, string | number | boolean)
返回 String 类型的属性值。 目前仅允许使用 String、int 和 bool。 如果该名称不可用,则返回指定的 defaultValue。
function getProperty(key: string | PropertyId, def?: string | number | boolean): string
参数
- key
-
string | PropertyId
参数名称。
- def
-
string | number | boolean
如果参数在集合中不可用,则返回的默认值。
返回
string
参数的值。
mergeTo(PropertyCollection)
将这组属性合并到另一个不覆盖的属性中。
function mergeTo(destinationCollection: PropertyCollection)
参数
- destinationCollection
- PropertyCollection
要合并到的集合。
setProperty(string | PropertyId, string)
设置 name 指定的参数的 String 值。
function setProperty(key: string | PropertyId, value: string)
参数
- key
-
string | PropertyId
参数名称。
- value
-
string
参数值。