Soap.WSDLItems.TWSDLItems.GetBindings

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure GetBindings(BindingNames: TDOMStrings; QualifiedNames: Boolean = False);

C++

void __fastcall GetBindings(Soap::Wsdlintf::TDOMStrings* BindingNames, bool QualifiedNames = false);

Properties

Type Visibility Source Unit Parent
procedure
function
public
Soap.WSDLItems.pas
Soap.WSDLItems.hpp
Soap.WSDLItems TWSDLItems

Description

Fills a WideString list with the names of all bindings defined in the WSDL document.

Call GetBindings to retrieve the names of all bindings defined in the WSDL document. A binding identifies an encoding format (e.g. soap:rpc) and communications protocol (eg. HTML) that is available for a specific port type (interface).

BindingNames is an existing TWideStrings object to which the names of any defined bindings are added.

QualifiedNames indicates whether the binding names should be qualified using the target namespace prefix.

Note: GetBindings does not clear the WideString list before adding the names of all defined bindings.

See Also