IXmlNodeSerializer.InnerText 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得及設定 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
屬性值
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