Returns the full XML name represented as the string:
"{" + namespaceURI + "}" + localName
When namespace URI is unknown (in case of no namespace or namespace unaware XML), this property returns the same value as:
QName.toString()
That is
prefix + ":" + localName
when namespace prefix exists, or just
localName
when there is no prefix (or in case of namespace unaware XML).