Method ExternalEntityDecl
ExternalEntityDecl(String, String, String)
Report a parsed external entity declaration.
Declaration
void ExternalEntityDecl(string name, string publicId, string systemId)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name of the entity. If it is a parameter entity, the name will begin with '%'. |
System.String | publicId | The entity's public identifier, or null if none was given. |
System.String | systemId | The entity's system identifier. |
Remarks
Only the effective (first) declaration for each entity will be reported.
If the system identifier is a URL, the parser must resolve it fully before passing it to the application.
Exceptions
Type | Condition |
---|---|
SAXException | The application may raise an exception. |