AI-generated Key Takeaways
- 
          ContentType is an enumeration representing the types of XML content nodes. 
- 
          To call an enum, you call its parent class, name, and property, such as XmlService.ContentType.CDATA.
- 
          The ContentType enum includes properties for various XML node types like CDATA, COMMENT, DOCTYPE, ELEMENT, ENTITYREF, PROCESSINGINSTRUCTION, and TEXT. 
An enumeration representing the types of XML content nodes.
To call an enum, you call its parent class, name, and property. For example, 
XmlService.ContentType.CDATA.
Properties
| Property | Type | Description | 
|---|---|---|
| CDATA | Enum | An XML CDATASectionnode. | 
| COMMENT | Enum | An XML Commentnode. | 
| DOCTYPE | Enum | An XML Documentnode. | 
| ELEMENT | Enum | An XML Elementnode. | 
| ENTITYREF | Enum | An XML Entitynode. | 
| PROCESSINGINSTRUCTION | Enum | An XML Processingnode. | 
| TEXT | Enum | An XML Textnode. |