Condividi tramite


HtmlHelper.AnonymousObjectToHtmlAttributes(Object) Metodo

Definizione

Crea un dizionario di attributi HTML dall'oggetto di input, traducendo i caratteri di sottolineatura in trattini in ogni proprietà dell'istanza pubblica.

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)

Parametri

htmlAttributes
Object

Oggetto anonimo che descrive gli attributi HTML.

Restituisce

Dizionario che rappresenta gli attributi HTML.

Commenti

Se l'oggetto è già un'istanza, viene restituita una IDictionary<TKey,TValue> copia superficiale.

new { data_name="value" } convertirà la voce { "data-name", "value" } nel dizionario risultante.

Si applica a