XmlSaxLexicalHandler Interface Reference
Public Member Functions | |
void | Comment (char[] ch, int start, int length) |
void | EndCDATA () |
void | EndDTD () |
void | EndEntity (System.String name) |
void | StartCDATA () |
void | StartDTD (System.String name, System.String publicId, System.String systemId) |
void | StartEntity (System.String name) |
Detailed Description
This interface will manage the Content events of a XML document.
Member Function Documentation
void Comment | ( | char[] | ch, | |
int | start, | |||
int | length | |||
) |
This method manage the notification when Characters elements were found.
- Parameters:
-
ch The array with the characters found. start The index of the first position of the characters found. length Specify how many characters must be read from the array.
void EndCDATA | ( | ) |
This method manage the notification when the end of a CDATA section were found.
void EndDTD | ( | ) |
This method manage the notification when the end of DTD declarations were found.
void EndEntity | ( | System.String | name | ) |
This method report the end of an entity.
- Parameters:
-
name The name of the entity that is ending.
void StartCDATA | ( | ) |
This method manage the notification when the start of a CDATA section were found.
void StartDTD | ( | System.String | name, | |
System.String | publicId, | |||
System.String | systemId | |||
) |
This method manage the notification when the start of DTD declarations were found.
- Parameters:
-
name The name of the DTD entity. publicId The public identifier. systemId The system identifier.
void StartEntity | ( | System.String | name | ) |
This method report the start of an entity.
- Parameters:
-
name The name of the entity that is ending.