Soap.WSDLItems.TWSDLItems.GetParts

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure GetParts(const MessageName: DOMString; PartNames: TDOMStrings; QualifiedNames: Boolean = False);

C++

void __fastcall GetParts(const System::UnicodeString MessageName, Soap::Wsdlintf::TDOMStrings* PartNames, 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 parts defined for a specified message.

Call GetParts to retrieve the names of all parts that make up a specified message. A part corresponds to definition from some type system.

MessageName is the name of the message whose parts are retrieved.

PartNames is an existing TWideStrings object to which the names of all parts on MessageName are added.

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

Note: GetParts does not clear the WideString list before adding the names of the parts of the specified message.

See Also