ModelExplorerExtensions.GetSimpleDisplayText(ModelExplorer) 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.
Obtient une chaîne d’affichage simple pour la Model propriété de modelExplorer
.
public:
[System::Runtime::CompilerServices::Extension]
static System::String ^ GetSimpleDisplayText(Microsoft::AspNetCore::Mvc::ViewFeatures::ModelExplorer ^ modelExplorer);
public static string GetSimpleDisplayText (this Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExplorer modelExplorer);
static member GetSimpleDisplayText : Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExplorer -> string
<Extension()>
Public Function GetSimpleDisplayText (modelExplorer As ModelExplorer) As String
Paramètres
- modelExplorer
- ModelExplorer
L’ModelExploreropérateur
Retours
Chaîne d’affichage simple pour le modèle.
Remarques
Le résultat est obtenu à partir des sources suivantes (le premier succès l’emporte) : SimpleDisplayProperty, Model converti en chaîne (si le résultat est intéressant), première propriété interne convertie en chaîne, NullDisplayText (lorsque la valeur est null
). Cette méthode n’est pas récursive afin d’empêcher une boucle infinie.