C# Class iTextSharp.text.xml.ParserBase

The ParserBase-class provides XML document parsing.
Show file Open project: mapo80/iTextSharp-Monotouch

Public Methods

Method Description
Characters ( string content, int start, int length ) : void

This method gets called when characters are encountered.

EndElement ( String uri, String lname, String name ) : void

This method gets called when an end tag is encountered.

Parse ( XmlDocument xDoc ) : void
Parse ( XmlTextReader reader ) : void
Parse ( string url ) : void

Begins the process of processing an XML document

StartElement ( String uri, String lname, String name, Hashtable attrs ) : void

This method gets called when a start tag is encountered.

Method Details

Characters() public abstract method

This method gets called when characters are encountered.
public abstract Characters ( string content, int start, int length ) : void
content string an array of characters
start int the start position in the array
length int the number of characters to read from the array
return void

EndElement() public abstract method

This method gets called when an end tag is encountered.
public abstract EndElement ( String uri, String lname, String name ) : void
uri String
lname String
name String the name of the tag that ends
return void

Parse() public method

public Parse ( XmlDocument xDoc ) : void
xDoc System.Xml.XmlDocument
return void

Parse() public method

public Parse ( XmlTextReader reader ) : void
reader System.Xml.XmlTextReader
return void

Parse() public method

Begins the process of processing an XML document
public Parse ( string url ) : void
url string the XML document to parse
return void

StartElement() public abstract method

This method gets called when a start tag is encountered.
public abstract StartElement ( String uri, String lname, String name, Hashtable attrs ) : void
uri String
lname String
name String the name of the tag that is encountered
attrs System.Collections.Hashtable the list of attributes
return void