SaxHandler Class Reference

Inheritance diagram for SaxHandler:
Asn1XerSaxHandler XmlSaxDefaultHandler XmlSaxContentHandler XmlSaxErrorHandler XmlSaxEntityResolver

List of all members.

Public Member Functions

override void Characters (System.Char[] ch, int start, int length)
override void EndElement (System.String namespaceURI, System.String localName, System.String qName)
override void StartElement (System.String namespaceURI, System.String localName, System.String qName, XmlAttributes atts)

Detailed Description

This class extends the Asn1XerSaxHandler class to add items specific to ASN.1 XER encoding.


Member Function Documentation

override void Characters ( System.Char[]  ch,
int  start,
int  length 
)

This method manage the notification when Characters element were found.

Parameters:
ch The array with the characters founds
start The index of the first position of the characters found
length Specify how many characters must be read from the array
override void EndElement ( System.String  namespaceURI,
System.String  localName,
System.String  qName 
) [virtual]

This method manage the notification when the end element node were found

Parameters:
namespaceURI The namespace URI of the element
localName The local name of the element
qName The long name (qualify name) of the element

Reimplemented from XmlSaxDefaultHandler.

override void StartElement ( System.String  namespaceURI,
System.String  localName,
System.String  qName,
XmlAttributes  atts 
) [virtual]

This method manage the event when a start element node were found

Parameters:
namespaceURI The namespace uri of the element tag
localName The local name of the element
qName The Qualify (long) name of the element
atts The list of attributes of the element

Reimplemented from XmlSaxDefaultHandler.