共用方式為


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

適用於