getAttributeValueByNameNS

getAttributeValueByNameNS(namespaceURI: String;
                          localName:    String;
                          value:        String output): Boolean;

The getAttributeValueByNameNS method of the JadeXMLParser class retrieves the value of the attribute with the namespace URI and local name specified in the namespaceURI and localName parameters, respectively.

The getAttributeValueByName method parameters are listed in the following table.

Parameter Description
namespaceURI Namespace URI or null ("") if the name has no namespace URI
localName The local name (without the prefix)
value The value of the attribute

The getAttributeValueByNameNS method returns true if the specified name was found or it returns false if it is not found. This method returns valid results only during the scope of the startElement method invocation.