The
More...
|
void | Parse (XmlDocument xDoc) |
|
void | Parse (XmlTextReader reader) |
|
void | Parse (string url) |
| Begins the process of processing an XML document More...
|
|
abstract void | StartElement (String uri, String lname, String name, Hashtable attrs) |
| This method gets called when a start tag is encountered. More...
|
|
abstract void | EndElement (String uri, String lname, String name) |
| This method gets called when an end tag is encountered. More...
|
|
abstract void | Characters (string content, int start, int length) |
| This method gets called when characters are encountered. More...
|
|
The
ParserBase
-class provides XML document parsing.
◆ Characters()
abstract void iTextSharp.text.xml.ParserBase.Characters |
( |
string |
content, |
|
|
int |
start, |
|
|
int |
length |
|
) |
| |
|
pure virtual |
This method gets called when characters are encountered.
- Parameters
-
content | an array of characters |
start | the start position in the array |
length | the number of characters to read from the array |
Implemented in iTextSharp.text.xml.ITextHandler.
◆ EndElement()
abstract void iTextSharp.text.xml.ParserBase.EndElement |
( |
String |
uri, |
|
|
String |
lname, |
|
|
String |
name |
|
) |
| |
|
pure virtual |
◆ Parse() [1/3]
void iTextSharp.text.xml.ParserBase.Parse |
( |
string |
url | ) |
|
Begins the process of processing an XML document
- Parameters
-
url | the XML document to parse |
◆ Parse() [2/3]
void iTextSharp.text.xml.ParserBase.Parse |
( |
XmlDocument |
xDoc | ) |
|
◆ Parse() [3/3]
void iTextSharp.text.xml.ParserBase.Parse |
( |
XmlTextReader |
reader | ) |
|
◆ StartElement()
abstract void iTextSharp.text.xml.ParserBase.StartElement |
( |
String |
uri, |
|
|
String |
lname, |
|
|
String |
name, |
|
|
Hashtable |
attrs |
|
) |
| |
|
pure virtual |
The documentation for this class was generated from the following file: