RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
IWSDLDocument Interface

IWSDLDocument provides low-level access to the definitions in a WSDL document.

Pascal
IWSDLDocument = interface(IXMLDocument);
C++
__interface IWSDLDocument : public IXMLDocument;

WSDLBind

IWSDLDocument is an interface to the TWSDLDocument class. It is primarily for internal use, because it only provides access to the Definitions property, which is used for low-level access to the definitions in a WSDL document. It is generally easier to work with a TWSDLItems object. You can often obtain this from an IWSDLDocument interface by using the global Supports function (Delphi) or the Supports method (C++) to obtain an IWSDLItems interface from this one, and then obtaining a TWSDLItems object from that interface.

Note: C++ method declarations that use IWSDLDocument use the _di_IWSDLDocument type instead. This type is a DelphiInterface wrapper around the IWSDLDocument interface:

typedef System::DelphiInterfaceDelphiInterface_object< IWSDLDocument >  _di_IWSDLDocument;

 

Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!