C# 클래스 iTextSharp.text.xml.ParserBase

The ParserBase-class provides XML document parsing.
파일 보기 프로젝트 열기: mapo80/iTextSharp-Monotouch

공개 메소드들

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