Returns the default XML name representation form, which is used by toXMLName() function, when its 'form' parameter is not specified.

The default form value is set with setXMLNameForm() function.

For more details, please see the descriptions of toXMLName() and setXMLNameForm() functions.

Returns:

The current value of the default XML name representation form, which may be one of the following:

"qualified"

The XML name will be represented as
prefix:localName
where the namespace prefix is found according to the XML document context(s) explicitly or implicitly specified in the function parameters.
"unqualified"
The XML name will be represented only by its Local Name part.
"full"
The XML name will be represented as the string
{namespaceURI}localName

Note: The initial default form value set before the first setXMLNameForm() call is "qualified".

See Also:

setXMLNameForm(), toXMLName()