Soap.WSDLItems.TWSDLItems.GetBindingOfType

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function  GetBindingOfType(const BindingTypeName: DOMString;  const TNS: DOMString = ''): IQualifiedNameArray; overload;

C++

IQualifiedNameArray __fastcall GetBindingOfType(const System::UnicodeString BindingTypeName, const System::UnicodeString TNS = System::UnicodeString())/* overload */;

Properties

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

Description

Returns the names of all bindings associated with a specified port type.

Call GetBindingOfType to retrieve the names of the bindings that are associated with the specified port type. Each bindings is defined in the WSDL document or another document that it imports. A binding identifies an encoding format (e.g. soap:rpc) and communications protocol (eg. HTML) that is available for a specific port type (interface).

BindingTypeName is the type of the binding. This is the name of a port type for which the binding describes an encoding format and communications protocol.

TNS is the namespace in which BindingTypeName is defined. If this parameter is omitted, GetBindingOfType assumes the value of the TargetNamespace property.

GetBindingOfType returns an array of qualified names for each binding defined for the specified type.

See Also