FDO .NET API Reference Feature Data Objects

OSGeo::FDO::Common::Xml::XmlSaxHandler Class Reference
[OSGeo::FDO::Common::Xml]

Inherits OSGeo::FDO::Runtime::Disposable, and OSGeo::FDO::Common::Xml::IXmlSaxHandler.

Inherited by OSGeo::FDO::Commands::Schema::PhysicalElementMapping, OSGeo::FDO::Common::Xml::XmlCharDataHandler, OSGeo::FDO::Common::Xml::XmlCopyHandler, OSGeo::FDO::Common::Xml::XmlSkipElementHandler, OSGeo::FDO::Schema::SchemaAttributeDictionary, OSGeo::FDO::Schema::SchemaElement, OSGeo::FDO::Xml::XmlDeserializable, OSGeo::FDO::Xml::XmlFeaturePropertyReader, OSGeo::FDO::Xml::XmlNameCollectionHandler, and OSGeo::FDO::Xml::XmlSpatialContextReader.

Inheritance diagram for OSGeo::FDO::Common::Xml::XmlSaxHandler:

Inheritance graph
[legend]
List of all members.

Detailed Description

XmlSaxHandler defines the SAX Handler callback interface. It is not an interface in the strict sense, since each function has a default implementation that does nothing. Implementors can override these callbacks to customize the handling of XML fragments parsed by XmlReader.

()

Definition at line 37 of file mgXmlSaxHandler.h.


Public Member Functions

virtual System::Void XmlCharacters (OSGeo::FDO::Common::Xml::XmlSaxContext *context, System::String *characters)
 Default Sax callback that is called when the XmlReader reads a chunk of simple content for the current element. Does nothing by default. This function may be called multiple times for the same element, if the the content is long. Applications must not make any assumptions about the chunk size or number of chunks for each element.
virtual System::Void XmlEndDocument (OSGeo::FDO::Common::Xml::XmlSaxContext *context)
 Default Sax callback that is called when the XmlReader finishes reading an XML document. Does nothing.
virtual System::Boolean XmlEndElement (OSGeo::FDO::Common::Xml::XmlSaxContext *context, System::String *resourceLocation, System::String *name, System::String *qualifiedName)
 Default Sax callback that is called when the XmlReader reads the end tag for an XML element in the document. Does nothing.
 XmlSaxHandler (System::IntPtr unmanaged, System::Boolean autoDelete)
 Constructs a SaxHandler based on an unmanaged instance of the object.
 XmlSaxHandler ()
virtual OSGeo::FDO::Common::Xml::IXmlSaxHandlerXmlStartDocument (OSGeo::FDO::Common::Xml::XmlSaxContext *context)
 Default Sax callback that is called when the XmlReader starts reading an XML document. Does nothing.
virtual OSGeo::FDO::Common::Xml::IXmlSaxHandlerXmlStartElement (OSGeo::FDO::Common::Xml::XmlSaxContext *context, System::String *resourceLocation, System::String *name, System::String *qualifiedName, OSGeo::FDO::Common::Xml::XmlAttributeCollection *attributes)
 Default Sax callback that is called when the XmlReader reads the start tag for an XML element in the document. Does nothing.

Comments or suggestions? Send us feedback.