ddn.data.xml.dom.attribute

DOM attribute types.

Types 1

A DOM attribute node.

Attributes are identified by their expanded name {namespaceUri, local}.

Fields
XmlQName nameLexical (prefix/local) name.
string namespaceUriNamespace URI, or empty string if the attribute is not in a namespace.
string valueAttribute value.
bool specifiedWhether this attribute was explicitly specified in the source.
Methods
string lexicalName() @property const @safe
string nodeName() @property const @safe
string nodeValue() @property const @safe
void nodeValue(string val) @property @safe
Constructors
this(XmlQName name, string value, string namespaceUri = "", XmlLocation location = XmlLocation.init)