TagBuilder.MergeAttributes メソッド

定義

オーバーロード

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 を指定します。

適用対象