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