Compartir a través de


HtmlHelper.AnonymousObjectToHtmlAttributes(Object) Método

Definición

Crea un diccionario de atributos HTML a partir del objeto de entrada, traduciendo caracteres de subrayado a guiones en cada propiedad de instancia pública.

public:
 static System::Collections::Generic::IDictionary<System::String ^, System::Object ^> ^ AnonymousObjectToHtmlAttributes(System::Object ^ htmlAttributes);
public static System.Collections.Generic.IDictionary<string,object> AnonymousObjectToHtmlAttributes (object htmlAttributes);
static member AnonymousObjectToHtmlAttributes : obj -> System.Collections.Generic.IDictionary<string, obj>
Public Shared Function AnonymousObjectToHtmlAttributes (htmlAttributes As Object) As IDictionary(Of String, Object)

Parámetros

htmlAttributes
Object

Objeto anónimo que describe atributos HTML.

Devoluciones

Un diccionario que representa atributos HTML.

Comentarios

Si el objeto ya es una IDictionary<TKey,TValue> instancia, se devuelve una copia superficial.

new { data_name="value" } se traducirá a la entrada { "data-name", "value" } del diccionario resultante.

Se aplica a