RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
WSDLItems.TWSDLIterateProc Type

TWSDLIterateProc is the type for callbacks that execute when importing a WSDL document.

Pascal
TWSDLIterateProc = procedure (const Options: IterateImportOptions; const WSDLItems: IWSDLItems; const XMLSchemaDoc: IXMLSchemaDoc; const Name: DOMString) of object;
C++
(const Options: IterateImportOptions; const WSDLItems: IWSDLItems; const XMLSchemaDoc: IXMLSchemaDoc; const Name: DOMString) ( TWSDLIterateProc)();

TWSDLIterateProc is the type of a callback that executes for every WSDL document that is imported by being included in another.. 

Options indicates whether the callback is executing before or after the imported WSDL document is loaded. 

WSDLItems is the interface for the imported WSDL document. It is only available when Options is ioLoaded. If the imported document is an XML schema, it is nil (Delphi) or NULL (C++), and you should use XMLSchemaDoc instead. 

XMLSchemaDoc is the interface for an imported XML schema when the imported document is an XML schema. It is only available when Options is ioLoaded. If the imported document is a WSDL document, it is nil (Delphi) or NULL (C++), and you should use WSDLItems instead. 

Name is the name (URL) of the imported document. 

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!