C# 클래스 iTextSharp.text.xml.TagMap.AttributeHandler

상속: ParserBase
파일 보기 프로젝트 열기: red-gate/iTextSharp-4.1.6

공개 메소드들

메소드 설명
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