Method | Description | |
---|---|---|
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 ( |
||
Parse ( |
||
Parse ( string url ) : void |
Begins the process of processing an XML document
|
|
StartElement ( String uri, String lname, String name, |
This method gets called when a start tag is 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 |
return | void |
public abstract EndElement ( String uri, String lname, String name ) : void | ||
uri | String | |
lname | String | |
name | String | the name of the tag that ends |
return | void |
public Parse ( |
||
xDoc | ||
return | void |
public Parse ( |
||
reader | ||
return | void |
public Parse ( string url ) : void | ||
url | string | the XML document to parse |
return | void |
public abstract StartElement ( String uri, String lname, String name, |
||
uri | String | |
lname | String | |
name | String | the name of the tag that is encountered |
attrs | the list of attributes | |
return | void |