次の方法で共有


IXmlNodeSerializer.InnerText プロパティ

定義

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

プロパティ値

String

Platform::String

winrt::hstring

XML 内からのテキスト。 テキストがない場合は、空の文字列を返します。

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;

この例の XML は次のとおりです。

<root>
  <foo>hello</foo>
  <bar>world</bar>
</root>

txt 変数は、InnerText メンバーから次の値を受け取ります

hello world

適用対象