XmlNode interface

Represents an XML Node object.

Properties

attributes

A list of attribute values on the node tag.

childNodes

The child nodes of the node.

nsPrefix

The namespace prefix.

tagName

The name of the node tag.

value

The value of the node.

Property Details

attributes

A list of attribute values on the node tag.

attributes?: Record<string, string>

Property Value

Record<string, string>

childNodes

The child nodes of the node.

childNodes?: XmlNode[]

Property Value

nsPrefix

The namespace prefix.

nsPrefix?: string

Property Value

string

tagName

The name of the node tag.

tagName?: string

Property Value

string

value

The value of the node.

value?: string

Property Value

string