Soap.WSDLItems.TWSDLItems.GetOperationsForBinding

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure GetOperationsForBinding(const BindingName: DOMString; OperationNames: TDOMStrings; QualifiedNames: Boolean = False);

C++

void __fastcall GetOperationsForBinding(const System::UnicodeString BindingName, Soap::Wsdlintf::TDOMStrings* OperationNames, bool QualifiedNames = false);

Properties

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

Description

Fills a list with the names of all operations defined on the port type of a specified binding.

Call GetOperationsForBinding to retrieve the names of all operations defined for the port type associated with a specified binding. An operation corresponds to a method on the interface that corresponds to a port type. A binding represents a port type, plus the protocols used to encode data and transmit requests when calling that port type.

BindingName is the name of the binding associated with the port type whose operations are retrieved.

OperationNames is an existing TWideStrings object to which the names of all operations on the binding's port type are added.

QualifiedNames specifies whether the operation names should be qualified using the target namespace prefix.

Note: GetOperationsForBinding does not clear the WideString list before adding the names of the operations.

See Also