com.esri.arcgis.geodatabasedistributed
Interface IGdbXmlExportEvents

All Superinterfaces:
EventListener, Serializable
All Known Implementing Classes:
IGdbXmlExportEventsAdapter, IGdbXmlExportEventsProxy

public interface IGdbXmlExportEvents
extends EventListener, Serializable

Provides access to callback events when exporting geodatabase to XML.

Remarks

The IGdbXmlExportEvents has methods to callback events when exporting geodatbase to Xml.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.


Method Summary
 void afterEndElement(IGdbXmlExportEventsAfterEndElementEvent theEvent)
          Called after writing an XML workspace document.
 void beforeStartElement(IGdbXmlExportEventsBeforeStartElementEvent theEvent)
          Called before writing an XML workspace document.
 

Method Detail

beforeStartElement

void beforeStartElement(IGdbXmlExportEventsBeforeStartElementEvent theEvent)
                        throws IOException,
                               AutomationException
Called before writing an XML workspace document.

Remarks

The BeforeStartElement has methods to listen for events before the element is exported to Xml.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Parameters:
theEvent - The event
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

afterEndElement

void afterEndElement(IGdbXmlExportEventsAfterEndElementEvent theEvent)
                     throws IOException,
                            AutomationException
Called after writing an XML workspace document.

Remarks

The AfterEndElement has methods to listen for events after the element is exported to Xml.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Parameters:
theEvent - The event
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.