public declaration(version as String, encoding as String, standalone as String) as Void throws SAXException
Receives the XML declaration pseudo-attributes.
Klyn's pure SAX parser reports the XML declaration through this callback when the document starts with <?xml ...?>.
| Parameter | Description |
|---|---|
version | XML version, or null when omitted. |
encoding | Declared encoding, or null when omitted. |
standalone | Standalone value, or null when omitted. |
handler.declaration("1.0", "UTF-8", null)