ASN1C C# Runtime Library  7.4
Public Member Functions | List of all members
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

◆ Comment()

void Comment ( char []  ch,
int  start,
int  length 
)

This method manage the notification when Characters elements were found.

Parameters
chThe array with the characters found.
startThe index of the first position of the characters found.
lengthSpecify how many characters must be read from the array.

◆ EndCDATA()

void EndCDATA ( )

This method manage the notification when the end of a CDATA section were found.

◆ EndDTD()

void EndDTD ( )

This method manage the notification when the end of DTD declarations were found.

◆ EndEntity()

void EndEntity ( System.String  name)

This method report the end of an entity.

Parameters
nameThe name of the entity that is ending.

◆ StartCDATA()

void StartCDATA ( )

This method manage the notification when the start of a CDATA section were found.

◆ StartDTD()

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
nameThe name of the DTD entity.
publicIdThe public identifier.
systemIdThe system identifier.

◆ StartEntity()

void StartEntity ( System.String  name)

This method report the start of an entity.

Parameters
nameThe name of the entity that is ending.