Method UnparsedEntityDecl
UnparsedEntityDecl(String, String, String, String)
Receive notification of an unparsed entity declaration event.
Declaration
void UnparsedEntityDecl(string name, string publicId, string systemId, string notationName)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The unparsed entity's name. |
System.String | publicId | The entity's public identifier, or null if none was given. |
System.String | systemId | The entity's system identifier. |
System.String | notationName | The name of the associated notation. |
Remarks
Note that the notation name corresponds to a notation
reported by the NotationDecl(String, String, String) event.
It is up to the application to record the entity for later
reference, if necessary;
unparsed entities may appear as attribute values.
If the system identifier is a URL, the parser must resolve it fully before passing it to the application.
Exceptions
Type | Condition |
---|---|
SAXException | Any SAX exception, possibly wrapping another exception. |