3. Document Object Model (XML) Level 1


3.6 Descriptions of additional objects in instances

XML adds to the range of objects that are available in document instances. These objects defined below.

Interface CDATASection

CDATA sections are used in the document instance, and provide a region in which most of the XML delimiter recognition does not take place. The primary purpose is for including material such as XML fragments, without needing to escape all the delimiters.

The wstring attribute of the Text node holds the text that was contained by the CDATA section. Note that this may contain characters that need to be escaped outside of CDATA sections.

IDL Definition

interface CDATASection : Text {
};