C# Class iTextSharp.text.xml.ParserBase

The ParserBase-class provides XML document parsing.
Afficher le fichier Open project: mapo80/iTextSharp-Monotouch

Méthodes publiques

Méthode 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 méthode

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
Résultat void

EndElement() public abstract méthode

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
Résultat void

Parse() public méthode

public Parse ( XmlDocument xDoc ) : void
xDoc System.Xml.XmlDocument
Résultat void

Parse() public méthode

public Parse ( XmlTextReader reader ) : void
reader System.Xml.XmlTextReader
Résultat void

Parse() public méthode

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

StartElement() public abstract méthode

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
Résultat void