HtmlHelper.ObjectToDictionary(Object) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Crée un dictionnaire à partir d'un objet, en ajoutant au dictionnaire chaque propriété d'instance publique sous la forme d'une clé avec sa valeur associée. Les propriétés publiques des types dérivés seront également exposées. Utilisé en règle générale avec les objets de type anonyme.
Si le value
est déjà une IDictionary<TKey,TValue> instance, il est retourné tel tel qu’il est.
new { data_name="value" }
traduit en entrée { "data_name", "value" }
dans le dictionnaire résultant.
public:
static System::Collections::Generic::IDictionary<System::String ^, System::Object ^> ^ ObjectToDictionary(System::Object ^ value);
public static System.Collections.Generic.IDictionary<string,object> ObjectToDictionary (object value);
static member ObjectToDictionary : obj -> System.Collections.Generic.IDictionary<string, obj>
Public Shared Function ObjectToDictionary (value As Object) As IDictionary(Of String, Object)
Paramètres
Retours
Le dictionnaire de noms de propriétés et de valeurs de propriétés créé.