TagBuilder.MergeAttributes Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
MergeAttributes<TKey,TValue>(IDictionary<TKey,TValue>) |
Adiciona novos atributos à marca. |
MergeAttributes<TKey,TValue>(IDictionary<TKey,TValue>, Boolean) |
Adiciona novos atributos ou substitui opcionalmente atributos existentes na marca. |
MergeAttributes<TKey,TValue>(IDictionary<TKey,TValue>)
Adiciona novos atributos à marca.
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
O tipo do objeto chave.
- TValue
O tipo do objeto de valor.
Parâmetros
- attributes
- IDictionary<TKey,TValue>
A coleção de atributos a ser adicionada.
Aplica-se a
MergeAttributes<TKey,TValue>(IDictionary<TKey,TValue>, Boolean)
Adiciona novos atributos ou substitui opcionalmente atributos existentes na marca.
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
O tipo do objeto chave.
- TValue
O tipo do objeto de valor.
Parâmetros
- attributes
- IDictionary<TKey,TValue>
A coleção de atributos a ser adicionada ou substituída.
- replaceExisting
- Boolean
Para cada atributo em attributes
, true para substituir o atributo se já existir um atributo que tenha a mesma chave ou false para deixar o atributo original inalterado.