Compartir a través de


TagBuilder.MergeAttributes Método

Definición

Sobrecargas

MergeAttributes<TKey,TValue>(IDictionary<TKey,TValue>)

Agrega nuevos atributos a la etiqueta.

MergeAttributes<TKey,TValue>(IDictionary<TKey,TValue>, Boolean)

Agrega nuevos atributos o reemplaza los atributos existentes de la etiqueta de manera opcional.

MergeAttributes<TKey,TValue>(IDictionary<TKey,TValue>)

Agrega nuevos atributos a la etiqueta.

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))

Parámetros de tipo

TKey

El tipo de objeto de clave.

TValue

El tipo del objeto de valor.

Parámetros

attributes
IDictionary<TKey,TValue>

La colección de atributos para agregar.

Se aplica a

MergeAttributes<TKey,TValue>(IDictionary<TKey,TValue>, Boolean)

Agrega nuevos atributos o reemplaza los atributos existentes de la etiqueta de manera opcional.

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)

Parámetros de tipo

TKey

El tipo de objeto de clave.

TValue

El tipo del objeto de valor.

Parámetros

attributes
IDictionary<TKey,TValue>

La colección de atributos para agregar o reemplazar.

replaceExisting
Boolean

Para cada atributo de attributes, true para reemplazar el atributo si ya existe un atributo que tiene la misma clave o false para dejar el atributo original sin cambios.

Se aplica a