TagBuilder.MergeAttributes 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
MergeAttributes<TKey,TValue>(IDictionary<TKey,TValue>) |
向 标记添加新属性。 |
MergeAttributes<TKey,TValue>(IDictionary<TKey,TValue>, Boolean) |
在标记中添加新特性或选择性地替换现有特性。 |
MergeAttributes<TKey,TValue>(IDictionary<TKey,TValue>)
向 标记添加新属性。
public void MergeAttributes<TKey,TValue> (System.Collections.Generic.IDictionary<TKey,TValue> attributes);
member this.MergeAttributes : System.Collections.Generic.IDictionary<'Key, 'Value> -> unit
Public Sub MergeAttributes(Of TKey, TValue) (attributes As IDictionary(Of TKey, TValue))
类型参数
- TKey
键对象的类型。
- TValue
值对象的类型。
参数
- attributes
- IDictionary<TKey,TValue>
要添加的特性的集合。
适用于
MergeAttributes<TKey,TValue>(IDictionary<TKey,TValue>, Boolean)
在标记中添加新特性或选择性地替换现有特性。
public void MergeAttributes<TKey,TValue> (System.Collections.Generic.IDictionary<TKey,TValue> attributes, bool replaceExisting);
member this.MergeAttributes : System.Collections.Generic.IDictionary<'Key, 'Value> * bool -> unit
Public Sub MergeAttributes(Of TKey, TValue) (attributes As IDictionary(Of TKey, TValue), replaceExisting As Boolean)
类型参数
- TKey
键对象的类型。
- TValue
值对象的类型。
参数
- attributes
- IDictionary<TKey,TValue>
要添加或替换的特性的集合。
- replaceExisting
- Boolean
对于 中的每个 attributes
属性,如果已存在具有相同键的属性,则为 true,则替换属性;如果为 false,则保留原始属性不变。