Enum ContentType

  • 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.

ContentType

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

PropertyTypeDescription
CDATAEnumAn XML CDATASection node.
COMMENTEnumAn XML Comment node.
DOCTYPEEnumAn XML DocumentType node.
ELEMENTEnumAn XML Element node.
ENTITYREFEnumAn XML EntityReference node.
PROCESSINGINSTRUCTIONEnumAn XML ProcessingInstruction node.
TEXTEnumAn XML Text node.