C# Класс iTextSharp.text.xml.TagMap.AttributeHandler

Наследование: ParserBase
Показать файл Открыть проект

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

Метод Описание
AttributeHandler ( Hashtable tagMap ) : System

Constructs a new SAXiTextHandler that will translate all the events triggered by the parser to actions on the Document-object.

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

This method gets called when characters are encountered.

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

This method gets called when an end tag is encountered.

IgnorableWhitespace ( char ch, int start, int length ) : void

This method gets called when ignorable white space encountered.

StartElement ( String tag, String lname, String n, Hashtable attrs ) : void

This method gets called when a start tag is encountered.

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

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

Constructs a new SAXiTextHandler that will translate all the events triggered by the parser to actions on the Document-object.
public AttributeHandler ( Hashtable tagMap ) : System
tagMap System.Collections.Hashtable A Hashtable containing XmlPeer-objects
Результат System

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

This method gets called when characters are encountered.
public 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 EndElement ( String tag, String lname, String name ) : void
tag String the name of the tag that ends
lname String
name String
Результат void

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

This method gets called when ignorable white space encountered.
public IgnorableWhitespace ( char ch, int start, int length ) : void
ch char an array of characters
start int the start position in the array
length int the number of characters to read from the array
Результат void

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

This method gets called when a start tag is encountered.
public StartElement ( String tag, String lname, String n, Hashtable attrs ) : void
tag String the name of the tag that is encountered
lname String
n String
attrs System.Collections.Hashtable the list of attributes
Результат void