Partager via


IXmlNodeSerializer.InnerText Propriété

Définition

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é

String

Platform::String

winrt::hstring

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

S’applique à