Soap.WSDLBind.TWSDLDocument.Definition

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Definition: IDefinition read GetDefinition write SetDefinition;

C++

__property _di_IDefinition Definition = {read=GetDefinition, write=SetDefinition};

Properties

Type Visibility Source Unit Parent
property public
Soap.WSDLBind.pas
Soap.WSDLBind.hpp
Soap.WSDLBind TWSDLDocument

Description

Provides access to the definitions contained in the WSDL document.

Definition is the IDefinition interface of the root node in the WSDL document. This interface is implemented by the node specified by DocumentElement.

You can use the IDefinition interface to access the Bindings, Messages, PortTypes, Services, and Types defined in the WSDL document by reading properties of the same names. Alternately, you can use the methods of TWSDLItems (a TWSDLDocument descendant) to access those definitions.

See Also