C# Класс iTextSharp.text.xml.ParserBase

The ParserBase-class provides XML document parsing.
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Описание методов

Characters() публичный абстрактный Метод

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
Результат void

EndElement() публичный абстрактный Метод

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
Результат void

Parse() публичный Метод

public Parse ( XmlDocument xDoc ) : void
xDoc System.Xml.XmlDocument
Результат void

Parse() публичный Метод

public Parse ( XmlTextReader reader ) : void
reader System.Xml.XmlTextReader
Результат void

Parse() публичный Метод

Begins the process of processing an XML document
public Parse ( string url ) : void
url string the XML document to parse
Результат void

StartElement() публичный абстрактный Метод

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
Результат void