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 CDATASection node. |
COMMENT | Enum | An XML Comment node. |
DOCTYPE | Enum | An XML DocumentType node. |
ELEMENT | Enum | An XML Element node. |
ENTITYREF | Enum | An XML EntityReference node. |
PROCESSINGINSTRUCTION | Enum | An XML ProcessingInstruction node. |
TEXT | Enum | An XML Text node. |