Soap.WSDLItems.TWSDLItems.GetMessages

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure GetMessages(MessageNames: TDOMStrings; QualifiedNames: Boolean = False);

C++

void __fastcall GetMessages(Soap::Wsdlintf::TDOMStrings* MessageNames, 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 messages defined in the WSDL document.

Call GetMessages to retrieve the names of all messages defined in the WSDL document. Each message describes a single item of data that is passed in or out when executing an operation (method). The parameters and return value of a method each map onto a message.

MessageNames is an existing TWideStrings object to which the names of all messages are added.

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

Note: GetMessages does not clear the WideString list before adding the message names defined in the WSDL document.

See Also