다음을 통해 공유


XmlAttribute.NodeValue 속성

정의

노드와 연결된 텍스트를 가져오거나 설정합니다.

public:
 property Platform::Object ^ NodeValue { Platform::Object ^ get(); void set(Platform::Object ^ value); };
IInspectable NodeValue();

void NodeValue(IInspectable value);
public object NodeValue { get; set; }
var object = xmlAttribute.nodeValue;
xmlAttribute.nodeValue = object;
Public Property NodeValue As Object

속성 값

Object

Platform::Object

IInspectable

노드와 연결된 텍스트입니다.

구현

설명

검색할 때 이 특성의 값은 문자열로 반환됩니다. 문자 및 일반 엔터티 참조는 해당 값으로 바뀝니다.

설정 시 이 속성은 문자열의 분석되지 않은 내용이 있는 텍스트 노드를 만듭니다.

이 값은 NodeType 속성에 따라 달라집니다. 다음 표에서는 이 종속성에 대해 설명합니다.

노드 형식NodeValue
요소Null
attribute특성 값
텍스트텍스트 노드의 콘텐츠
CDATASectionCDATA 섹션의 콘텐츠
EntityReferenceNULL
엔터티NULL
ProcessingInstruction대상을 제외한 전체 콘텐츠
의견주석의 내용
문서NULL
DocumentTypeNULL
DocumentFragmentNULL
NotationNULL

적용 대상