Table of Contents

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 string

the 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 string

the 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 string

the text element, probably a fragment.