Partager via


HtmlHelper.AnonymousObjectToHtmlAttributes(Object) Méthode

Définition

Crée un dictionnaire d’attributs HTML à partir de l’objet d’entrée, en traduisant les traits de soulignement en tirets dans chaque propriété de instance publique.

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)

Paramètres

htmlAttributes
Object

Objet anonyme décrivant les attributs HTML.

Retours

Dictionnaire qui représente les attributs HTML.

Remarques

Si l’objet est déjà un IDictionary<TKey,TValue> instance, une copie superficielle est retournée.

new { data_name="value" } se traduit par l’entrée { "data-name", "value" } dans le dictionnaire résultant.

S’applique à