IXmlNodeSerializer.InnerText Propriété
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 et définit le texte à partir de l’intérieur du code XML.
public:
property Platform::String ^ InnerText { Platform::String ^ get(); void set(Platform::String ^ value); };
winrt::hstring InnerText();
void InnerText(winrt::hstring value);
public string InnerText { get; set; }
var string = iXmlNodeSerializer.innerText;
iXmlNodeSerializer.innerText = string;
Public Property InnerText As String
Valeur de propriété
Texte de l’intérieur du code XML. Retourne une chaîne vide s’il n’y a pas de texte.
Exemples
var doc = new Window.Data.Xml.Dom.XmlDocument();
doc.loadXml('<root>\r\n <foo>hello</foo>\r\n <bar>world</bar>\r\n </root>');
var xml = doc.getXml();
var txt = doc.InnerText;
Le code XML de cet exemple est le suivant.
<root>
<foo>hello</foo>
<bar>world</bar>
</root>
La variable txt reçoit la valeur suivante du membre InnerText :
hello world