Method UnparsedEntityDecl
UnparsedEntityDecl(String, String, String, String)
Receive notification of an unparsed entity declaration.
By default, do nothing. Application writers may override this method in a subclass to keep track of the unparsed entities declared in a document.
Declaration
public virtual void UnparsedEntityDecl(string name, string publicId, string systemId, string notationName)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The entity name. |
System.String | publicId | The entity public identifier, or null if not available. |
System.String | systemId | The entity system identifier. |
System.String | notationName | The name of the associated notation. |
Implements
Exceptions
Type | Condition |
---|---|
SAXException | Any SAX exception, possibly wrapping another exception. |