Soap.WSDLItems.TWSDLItems.GetOperations

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure GetOperations(const PortTypeName: DOMString; OperationNames: TDOMStrings; QualifiedNames: Boolean = False);

C++

void __fastcall GetOperations(const System::UnicodeString PortTypeName, 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 WideString list with the names of all operations defined for a specified port type.

Call GetOperations to retrieve the names of all operations defined in for the port type specified by PortTypeName. An operation corresponds to a method on the interface that corresponds to the specified port type.

PortTypeName is the name of the port type whose operations are retrieved.

OperationNames is an existing TWideStrings object to which the names of all operations on PortTypeName are added.

QualifiedNames indicates whether the operation names added to the list should be qualified using the target namespace prefix.

Note: GetOperations does not clear the WideString list before adding the names of the operations on the specified port type.

See Also