Interface ISimpleXmlDocHandler
- Namespace
- iTextSharp.text.xml.simpleparser
- Assembly
- iTextSharp.LGPLv2.Core.dll
The handler for the events fired by SimpleXMLParser . @author Paulo Soares (psoares@consiste.pt)
public interface ISimpleXmlDocHandler
Methods
EndDocument()
Called after the document is parsed.
void EndDocument()
EndElement(string)
Called when an end tag is found.
void EndElement(string tag)
Parameters
tag
stringthe tag name
StartDocument()
Called when the document starts to be parsed.
void StartDocument()
StartElement(string, INullValueDictionary<string, string>)
Called when a start tag is found.
void StartElement(string tag, INullValueDictionary<string, string> h)
Parameters
tag
stringthe tag name
h
INullValueDictionary<string, string>the tag's attributes
Text(string)
Called when a text element is found.
void Text(string str)
Parameters
str
stringthe text element, probably a fragment.