다음을 통해 공유


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

적용 대상