Soap.WSDLItems.TWSDLItems.GetSoapBindingAttribute

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function  GetSoapBindingAttribute(const BindingName: DOMString; Attribute: DOMString;  var SOAPVersion: TSOAPVersion): DOMString;

C++

System::UnicodeString __fastcall GetSoapBindingAttribute(const System::UnicodeString BindingName, System::UnicodeString Attribute, Soap::Wsdlintf::TSOAPVersion &SOAPVersion);

Properties

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

Description

Returns the value of a specified attribute of a specified SOAP binding.

Call GetSoapBindingAttribute to retrieve value of an attribute on a SOAP binding. GetSoapBindingAttribute locates a binding with the specified name that includes a <soap:binding> tag, and returns the specified attribute from that <soap:binding> tag.

BindingName is the name of the binding that includes the <soap:binding> tag. A binding describes the encoding and transport protocols for an associated port type.

Attribute is the name of the desired attribute on the <soap:binding> tag.

If BindingName does not identify a binding that includes a <soap:binding> tag that has the specified attribute, GetSoapBindingAttribute returns an empty string.

See Also