SaxParser.getProperty

Look up the value of a property.

<p>The property name is any fully-qualified URI. It is possible for an XMLReader to recognize a property name but temporarily be unable to return its value. Some property values may be available only in specific contexts, such as before, during, or after a parse.</p>

<p>XMLReaders are not required to recognize any specific property names, though an initial core set is documented for SAX2.</p>

<p>Implementors are free (and encouraged) to invent their own properties, using names built on their own URIs.</p>

@param name The property name, which is a fully-qualified URI. @return The current value of the property. @exception org.xml.sax.SAXNotRecognizedException If the property value can't be assigned or retrieved. @exception org.xml.sax.SAXNotSupportedException When the XMLReader recognizes the property name but cannot determine its value at this time. @see #setProperty

class SaxParser(Ch = char)
getProperty
(
const(Ch)[] name
)

Meta